17 lines
367 B
Java
17 lines
367 B
Java
|
package org.spongycastle.util.encoders;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class DecoderException extends IllegalStateException {
|
||
|
private Throwable a;
|
||
|
|
||
|
public DecoderException(String str, Throwable th) {
|
||
|
super(str);
|
||
|
this.a = th;
|
||
|
}
|
||
|
|
||
|
@Override // java.lang.Throwable
|
||
|
public Throwable getCause() {
|
||
|
return this.a;
|
||
|
}
|
||
|
}
|