// // RQUncaughtExceptionHandler.h // TEST // // Created by 张嵘 on 2018/10/22. // Copyright © 2018 张嵘. All rights reserved. // #import #import static NSString * const kNotificationUncaughtException = @"kNotificationUncaughtException"; @interface RQUncaughtExceptionHandler : NSObject + (void)setDefaultHandler; + (NSUncaughtExceptionHandler *)getHandler; + (void)TakeException:(NSException *) exception; @end