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