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

21 lines
434 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}