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

19 lines
445 B
Java

package org.spongycastle.jce.exception;
import java.security.cert.CertPathBuilderException;
/* loaded from: classes6.dex */
public class ExtCertPathBuilderException extends CertPathBuilderException {
private Throwable b;
public ExtCertPathBuilderException(String str, Throwable th) {
super(str);
this.b = th;
}
@Override // java.lang.Throwable
public Throwable getCause() {
return this.b;
}
}