#import "include/ObjectiveCExceptionHandling.h" @implementation ObjcExceptionHandler + (BOOL)catchException:(void (^)(void))tryBlock error:(__autoreleasing NSError **)error { @try { tryBlock(); return YES; } @catch (NSException *exception) { *error = [[NSError alloc] initWithDomain:exception.name code:0 userInfo:exception.userInfo]; return NO; } } @end