react-native-exception-handler
react-native-exception-handler copied to clipboard
Can not catch iOS native type error
Hi, awesome lib. To test the native exception handler I created a native RCT_EXPORT_METHOD method and which is require one int parameter. After that I invoke the exported method and using a string param instead of an int one, the error can not be catch as expected in iOS but Android works.
NativeModules.someModule.invokeMethod('abc'); //expected int parameter;
any idea about that? thanks!