package org.spongycastle.asn1; /* loaded from: classes6.dex */ public class ASN1ParsingException extends IllegalStateException { private Throwable b; public ASN1ParsingException(String str) { super(str); } public ASN1ParsingException(String str, Throwable th) { super(str); this.b = th; } @Override // java.lang.Throwable public Throwable getCause() { return this.b; } }