- exceptionHandler:shouldLogException:mask:
Implemented by the delegate to evaluate whether the delegating
NSExceptionHandler
instance should log a given exception.NSExceptionHandler
instance should handle a given exception.Availability
Technology
- (BOOL)exceptionHandler:(NSExceptionHandler
*)sender
shouldHandleException:(NSException
*)exception
mask:(NSUInteger
)aMask;
sender
The NSException
object sending the message.
exception
An NSException
object describing the exception to be evaluated.
aMask
The bit mask indicating the types of exceptions handled by the NSException
object. See Logging and Handling Constants and System Hang Constants for descriptions of the possible enum
constants.
YES
to have the NSException
object handle the exception, NO
otherwise.
- exceptionHandler:shouldLogException:mask:
NSExceptionHandler
instance should log a given exception.