// Copyright 2004-present Facebook. All Rights Reserved. #import #import "RCTBridgeModule.h" @protocol RCTExceptionsManagerDelegate - (void)unhandledJSExceptionWithMessage:(NSString *)message stack:(NSArray *)stack; @end @interface RCTExceptionsManager : NSObject - (instancetype)initWithDelegate:(id)delegate NS_DESIGNATED_INITIALIZER; @end