20 lines
517 B
Java
20 lines
517 B
Java
|
package org.bouncycastle.x509;
|
||
|
|
||
|
import java.security.cert.CertificateEncodingException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
class ExtCertificateEncodingException extends CertificateEncodingException {
|
||
|
Throwable cause;
|
||
|
|
||
|
@Override // java.lang.Throwable
|
||
|
public Throwable getCause() {
|
||
|
return this.cause;
|
||
|
}
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public ExtCertificateEncodingException(String str, Throwable th) {
|
||
|
super(str);
|
||
|
this.cause = th;
|
||
|
}
|
||
|
}
|