21 lines
434 B
Java
21 lines
434 B
Java
package org.spongycastle.jce.provider;
|
|
|
|
/* loaded from: classes6.dex */
|
|
public class AnnotatedException extends Exception {
|
|
private Throwable c;
|
|
|
|
public AnnotatedException(String str, Throwable th) {
|
|
super(str);
|
|
this.c = th;
|
|
}
|
|
|
|
public AnnotatedException(String str) {
|
|
this(str, null);
|
|
}
|
|
|
|
@Override // java.lang.Throwable
|
|
public Throwable getCause() {
|
|
return this.c;
|
|
}
|
|
}
|