Skip to content

Instantly share code, notes, and snippets.

@millenomi
Created June 25, 2010 06:19
Show Gist options
  • Save millenomi/452506 to your computer and use it in GitHub Desktop.
Save millenomi/452506 to your computer and use it in GitHub Desktop.
#define ILAssertNoNSError(errVarName, call) \
{ \
NSError* errVarName; \
if (!(call)) \
[NSException raise:@"ILUnexpectedNSErrorException" format:@"Operation " #call " failed with error %@", errVarName]; \
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment