25 lines
649 B
Java
25 lines
649 B
Java
|
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;
|
||
|
}
|
||
|
}
|