18 lines
447 B
Java
18 lines
447 B
Java
|
package org.bouncycastle.util.encoders;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class EncoderException extends IllegalStateException {
|
||
|
private Throwable cause;
|
||
|
|
||
|
@Override // java.lang.Throwable
|
||
|
public Throwable getCause() {
|
||
|
return this.cause;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public EncoderException(String str, Throwable th) {
|
||
|
super(str);
|
||
|
this.cause = th;
|
||
|
}
|
||
|
}
|