what-the-bank/sources/org/aspectj/lang/SoftException.java

37 lines
836 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.aspectj.lang;
import java.io.PrintStream;
import java.io.PrintWriter;
/* loaded from: classes6.dex */
public class SoftException extends RuntimeException {
private Throwable e;
static {
try {
Class.forName("java.nio.Buffer");
} catch (Throwable unused) {
}
}
@Override // java.lang.Throwable
public void printStackTrace() {
printStackTrace(System.err);
}
@Override // java.lang.Throwable
public void printStackTrace(PrintStream printStream) {
super.printStackTrace(printStream);
}
@Override // java.lang.Throwable
public void printStackTrace(PrintWriter printWriter) {
super.printStackTrace(printWriter);
}
@Override // java.lang.Throwable
public Throwable getCause() {
return this.e;
}
}