AppExceptions provides for a clearing house of named NeXTSTEP exceptions. Simply link it into your app, and call it using NXApp.
AppExceptions is free. Use it and abuse it as you see fit.
Scott Hess
12901 Upton Avenue South, #326
Burnsville, MN 55337
(612) 895-1208
scott@gac.edu
shess@ssesco.com
CATEGORY VARIABLES
Inherited from Application id NXApp;
Declared in AppExceptions HashTable * exceptionTable;
int exceptionBase;
exceptionTable Maps exception names to numbers.
exceptionBase Next exception that -exceptionFor: will pass out.
METHOD TYPES
Mapping names to numbers - exceptionFor:
Raising exceptions - raiseException:
- raiseException:with:
- raiseException:with:with:
INSTANCE METHODS
exceptionFor:
-(int)exceptionFor:(const char *)name
Returns the mapping for name. If there is no current mapping for name, create such a mapping. The mappings are created from NX_APPBASE to NX_APPBASE+999.
raiseException:
- raiseException:(const char *)name
Calls -raiseException:with:with: with NULL for both data parameters.