27 lines
703 B
Java
27 lines
703 B
Java
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);
|
|
}
|
|
}
|