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); } }