What\'s the best way to throw an exception in objective-c/cocoa?
You can use two methods for raising exception in the try catch block
@throw[NSException exceptionWithName];
or the second method
NSException e; [e raise];