MulleObjCExceptionHandler

Core exception handling functions for the MulleObjC runtime.

Exception Functions

Handler Management

Usage Example

// Set custom handler
void MyExceptionHandler(id exception)
{
   fprintf(stderr, "Uncaught exception: %s\n", 
           [exception description]);
   abort();
}

NSSetUncaughtExceptionHandler(MyExceptionHandler);

Important Notes

  1. Thread Safety
  2. Debugging