20 lines
461 B
Java
20 lines
461 B
Java
|
package org.bouncycastle.jce.provider;
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
}
|