what-the-bank/sources/org/bouncycastle/jce/provider/AnnotatedException.java

27 lines
703 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.jce.provider;
import org.bouncycastle.jce.exception.ExtException;
/* loaded from: classes6.dex */
public class AnnotatedException extends Exception implements ExtException {
private Throwable _underlyingException;
Throwable getUnderlyingException() {
return this._underlyingException;
}
@Override // java.lang.Throwable, org.bouncycastle.jce.exception.ExtException
public Throwable getCause() {
return this._underlyingException;
}
public AnnotatedException(String str, Throwable th) {
super(str);
this._underlyingException = th;
}
public AnnotatedException(String str) {
this(str, null);
}
}