mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
0646551d76
Summary: We will use this error reporting pipeline for all js errors not only early js errors, so remove all "early" prefixes. Changelog: [General][Changed] - Remove "Early" in Js error reporting pipeline Reviewed By: fkgozali Differential Revision: D37379339 fbshipit-source-id: d44772818ead977a164c8632c081863851046be6
50 lines
1.8 KiB
Objective-C
50 lines
1.8 KiB
Objective-C
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol RCTExceptionsManagerDelegate <NSObject>
|
|
|
|
- (void)handleSoftJSExceptionWithMessage:(nullable NSString *)message
|
|
stack:(nullable NSArray *)stack
|
|
exceptionId:(NSNumber *)exceptionId
|
|
extraDataAsJSON:(nullable NSString *)extraDataAsJSON;
|
|
- (void)handleFatalJSExceptionWithMessage:(nullable NSString *)message
|
|
stack:(nullable NSArray *)stack
|
|
exceptionId:(NSNumber *)exceptionId
|
|
extraDataAsJSON:(nullable NSString *)extraDataAsJSON;
|
|
|
|
@optional
|
|
- (void)updateJSExceptionWithMessage:(nullable NSString *)message
|
|
stack:(nullable NSArray *)stack
|
|
exceptionId:(NSNumber *)exceptionId;
|
|
|
|
@end
|
|
|
|
@interface RCTExceptionsManager : NSObject <RCTBridgeModule>
|
|
|
|
- (instancetype)initWithDelegate:(id<RCTExceptionsManagerDelegate>)delegate;
|
|
|
|
- (void)reportSoftException:(nullable NSString *)message
|
|
stack:(nullable NSArray<NSDictionary *> *)stack
|
|
exceptionId:(double)exceptionId;
|
|
- (void)reportFatalException:(nullable NSString *)message
|
|
stack:(nullable NSArray<NSDictionary *> *)stack
|
|
exceptionId:(double)exceptionId;
|
|
- (void)reportJsException:(NSString *)errorMap;
|
|
|
|
@property (nonatomic, weak) id<RCTExceptionsManagerDelegate> delegate;
|
|
|
|
@property (nonatomic, assign) NSUInteger maxReloadAttempts;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|