what-the-bank/sources/org/spongycastle/util/encoders/EncoderException.java

17 lines
367 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.spongycastle.util.encoders;
/* loaded from: classes6.dex */
public class EncoderException extends IllegalStateException {
private Throwable d;
public EncoderException(String str, Throwable th) {
super(str);
this.d = th;
}
@Override // java.lang.Throwable
public Throwable getCause() {
return this.d;
}
}