package org.bouncycastle.jcajce.provider.asymmetric.x509; import java.security.cert.CRLException; /* loaded from: classes6.dex */ class ExtCRLException extends CRLException { Throwable cause; @Override // java.lang.Throwable public Throwable getCause() { return this.cause; } /* JADX INFO: Access modifiers changed from: package-private */ public ExtCRLException(String str, Throwable th) { super(str); this.cause = th; } }