mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
package io.sentry;
|
|
|
|
import java.lang.Thread;
|
|
|
|
/* loaded from: classes3.dex */
|
|
interface UncaughtExceptionHandler {
|
|
Thread.UncaughtExceptionHandler getDefaultUncaughtExceptionHandler();
|
|
|
|
void setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler uncaughtExceptionHandler);
|
|
|
|
/* loaded from: classes3.dex */
|
|
public static final class Adapter implements UncaughtExceptionHandler {
|
|
private static final Adapter INSTANCE = new Adapter();
|
|
|
|
/* JADX INFO: Access modifiers changed from: package-private */
|
|
public static UncaughtExceptionHandler getInstance() {
|
|
return INSTANCE;
|
|
}
|
|
|
|
private Adapter() {
|
|
}
|
|
|
|
@Override // io.sentry.UncaughtExceptionHandler
|
|
public Thread.UncaughtExceptionHandler getDefaultUncaughtExceptionHandler() {
|
|
return Thread.getDefaultUncaughtExceptionHandler();
|
|
}
|
|
|
|
@Override // io.sentry.UncaughtExceptionHandler
|
|
public void setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler uncaughtExceptionHandler) {
|
|
Thread.setDefaultUncaughtExceptionHandler(uncaughtExceptionHandler);
|
|
}
|
|
}
|
|
}
|