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

25 lines
649 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.spongycastle.jce.exception;
import java.security.cert.CertPath;
import java.security.cert.CertPathValidatorException;
/* loaded from: classes6.dex */
public class ExtCertPathValidatorException extends CertPathValidatorException {
private Throwable b;
public ExtCertPathValidatorException(String str, Throwable th) {
super(str);
this.b = th;
}
public ExtCertPathValidatorException(String str, Throwable th, CertPath certPath, int i) {
super(str, th, certPath, i);
this.b = th;
}
@Override // java.lang.Throwable
public Throwable getCause() {
return this.b;
}
}