25 lines
734 B
Java
25 lines
734 B
Java
package org.bouncycastle.jce.exception;
|
|
|
|
import java.security.cert.CertPath;
|
|
import java.security.cert.CertPathValidatorException;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class ExtCertPathValidatorException extends CertPathValidatorException implements ExtException {
|
|
private Throwable cause;
|
|
|
|
@Override // java.lang.Throwable, org.bouncycastle.jce.exception.ExtException
|
|
public Throwable getCause() {
|
|
return this.cause;
|
|
}
|
|
|
|
public ExtCertPathValidatorException(String str, Throwable th, CertPath certPath, int i) {
|
|
super(str, th, certPath, i);
|
|
this.cause = th;
|
|
}
|
|
|
|
public ExtCertPathValidatorException(String str, Throwable th) {
|
|
super(str);
|
|
this.cause = th;
|
|
}
|
|
}
|