INNER CODE UNIT · Java
ReactNativeExceptionHandlerModule
a7ul/react-native-exception-handler · android/src/main/java/com/masteratul/exceptionhandler/ReactNativeExceptionHandlerModule.java:13
public class ReactNativeExceptionHandlerModule extends ReactContextBaseJavaModule {
private ReactApplicationContext reactContext;
private Activity activity;
private static Class errorIntentTargetClass = DefaultErrorScreen.class;
private static NativeExceptionHandlerIfc nativeExceptionHandler;
private Callback callbackHolder;
private Thread.UncaughtExceptionHandler originalHandler;
public ReactNativeExceptionHandlerModule(ReactApplicationContext reactContext) {
super(reactContext);
this.reactContext = reactContext;
}
@Override
public String getName() {
return "ReactNativeExceptionHandler";
}