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

25 lines
711 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.CertPathBuilderException;
/* loaded from: classes6.dex */
public class ExtCertPathBuilderException extends CertPathBuilderException implements ExtException {
private Throwable cause;
@Override // java.lang.Throwable, org.bouncycastle.jce.exception.ExtException
public Throwable getCause() {
return this.cause;
}
public ExtCertPathBuilderException(String str, Throwable th, CertPath certPath, int i) {
super(str, th);
this.cause = th;
}
public ExtCertPathBuilderException(String str, Throwable th) {
super(str);
this.cause = th;
}
}