blob: bbfa6219927997230246d4a7dc7a75ebbba4aebf [file] [edit]
#import <Foundation/Foundation.h>
int main(int argc, char const *argv[]) {
@try {
NSException *e = [[NSException alloc] initWithName:@"ThrownException"
reason:@"SomeReason"
userInfo:nil];
@throw e;
} @catch (NSException *e) {
NSLog(@"Caught %@", e);
@throw; // let the process crash...
}
return 0;
}