21 lines
451 B
Java
21 lines
451 B
Java
|
package org.bouncycastle.asn1;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ASN1ParsingException extends IllegalStateException {
|
||
|
private Throwable cause;
|
||
|
|
||
|
@Override // java.lang.Throwable
|
||
|
public Throwable getCause() {
|
||
|
return this.cause;
|
||
|
}
|
||
|
|
||
|
public ASN1ParsingException(String str, Throwable th) {
|
||
|
super(str);
|
||
|
this.cause = th;
|
||
|
}
|
||
|
|
||
|
public ASN1ParsingException(String str) {
|
||
|
super(str);
|
||
|
}
|
||
|
}
|