blob: dcdf093e613b11eee39ed8e9527e0aebd46ae38e [file] [log] [blame]
#import "ObjCException.h"
@implementation ExceptionCatcher
- (NSException* _Nullable) tryBlock:(__attribute__((noescape)) void(^_Nonnull)(void))unsafeBlock {
@try {
unsafeBlock();
}
@catch (NSException *exception) {
return exception;
}
return nil;
}
@end