cause |
returns the exception which caused the raise of the receiver of this message
- (NSException *) cause;
init |
default constructor
- init;
initWithReason: |
Initialization specifyin the reason
- initWithReason: (NSString *) aReason;
raiseWithPredecessor: |
Raises the exception setting the hand-off exception as the cause of this raising.
- (void) raiseWithPredecessor: (NSException *) predecessor;
predecessor
- Exception which caused the receiver of this message to be raised.
setCause: |
Specify the exception which has previously been thrown and will cause the receiver of this message to be raisen
- setCause: (NSException *) causingException;
Do only call this method once per instance! Otherwise it will throw an exception for itself!
(Last Updated November 08, 2007)