what-the-bank/sources/org/bouncycastle/jce/exception/ExtCertPathValidatorExcepti...

25 lines
734 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}