19 lines
542 B
Java
19 lines
542 B
Java
|
package org.bouncycastle.jce.exception;
|
||
|
|
||
|
import java.security.cert.CertificateEncodingException;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class ExtCertificateEncodingException extends CertificateEncodingException implements ExtException {
|
||
|
private Throwable cause;
|
||
|
|
||
|
@Override // java.lang.Throwable, org.bouncycastle.jce.exception.ExtException
|
||
|
public Throwable getCause() {
|
||
|
return this.cause;
|
||
|
}
|
||
|
|
||
|
public ExtCertificateEncodingException(String str, Throwable th) {
|
||
|
super(str);
|
||
|
this.cause = th;
|
||
|
}
|
||
|
}
|