Exception handling

@interface SimpleException : NSException
@end

@implementation SimpleException : NSException
@end

@throw [SimpleException
    exceptionWithName:@"SimpleException"
    reason:@"Simple exception"
    userInfo:nil];