1// Copyright 2015-present 650 Industries. All rights reserved. 2 3#import "EXDisabledRedBox.h" 4 5@implementation EXDisabledRedBox 6 7+ (NSString *)moduleName { return @"RCTRedBox"; } 8 9- (void)showError:(NSError *)message {} 10- (void)showErrorMessage:(NSString *)message {} 11- (void)showErrorMessage:(NSString *)message withDetails:(NSString *)details {} 12- (void)showErrorMessage:(NSString *)message withRawStack:(NSString *)rawStack {} 13- (void)showErrorMessage:(NSString *)message withRawStack:(NSString *)rawStack errorCookie:(int)errorCookie {} 14- (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {} 15- (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack {} 16- (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack showIfHidden:(BOOL)shouldShow {} 17- (void)showErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie:(int)errorCookie {} 18- (void)updateErrorMessage:(NSString *)message withStack:(NSArray<NSDictionary *> *)stack errorCookie:(int)errorCookie {} 19- (void)showErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {} 20- (void)updateErrorMessage:(NSString *)message withParsedStack:(NSArray<id> *)stack {} 21- (void)showErrorMessage:(NSString *)message 22 withParsedStack:(NSArray<id> *)stack 23 errorCookie:(int)errorCookie {} 24- (void)updateErrorMessage:(NSString *)message 25 withParsedStack:(NSArray<id> *)stack 26 errorCookie:(int)errorCookie {} 27 28- (void)dismiss {} 29 30- (void)setOverrideReloadAction:(dispatch_block_t __unused)block {} 31 32@end 33