react-native-exception-handler icon indicating copy to clipboard operation
react-native-exception-handler copied to clipboard

A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions.

Results 70 react-native-exception-handler issues
Sort by recently updated
recently updated
newest added
trafficstars

![image](https://user-images.githubusercontent.com/33368907/57456819-edf83c80-728b-11e9-8c8d-93d6eda2505e.png) ``` const errorHandler = (e, isFatal) => { if (isFatal) { Alert.alert( 'Unexpected error occurred', `Error: ${(isFatal) ? 'Fatal:' : ''} ${e.name} ${e.message} Please close the app and start...

Hello, This looks like a great tool, thanks for creating it. I'm trying to show the error line as well as the stack details. I'm probably missing something. For example...

Can you help me for this issue "Unresolved function or method raiseTestNativeError()". There is no method in the RnTestExceptionHandler, so I can not trigger setNativeExceptionHandler method.

I use setJSExceptionHandler. My code has some loading logic using an async function. When my server is down, it supposes to throw an error. My catch block actually logs network...

Hello, I have a problem. In the debug version, exceptions can be normally caught and displayed, but in the release version, only the white screen is displayed and no exceptions...

I have this in my App.jsx: ``` // CAPTURE UNHANDLED EVENTS TO PREVENT APP CRASH const errorHandler = (e, isFatal) => { ErrorService.logError('Unhandled JS Exception', e, {}, {name: e.name, isFatal});...

In case if native part of an app is instrumented with newrelic, would it in any way conflict with this module? Would crashes still pop in crash reports in newrelic...

When i try to navigate some not buggy screens, exceptionHandler function of setJSExceptionHandler is returns undefined error and isFatal params. Has anyone encountered this problem and how can i handle...

On Android, setNativeExceptionHandler callback is not being called, although the popup is being shown. On iOS, the callback is called, but the popup is not shown. I am running in...

In your code the following line is causing havoc: ``` console.error = (message, error) => global.ErrorUtils.reportError(error); // sending console.error so that it can be caught ``` This seems very bad....