Represents the exception context of the program. More...
Data Fields | |
ExceptionFrame * | currentFrame |
The current (inner) exception frame of this context. | |
const SignalMapping * | signalMapping |
The array of mappings between the signals and exceptions. | |
int | signalMappings |
The number of elements in the array of mappings. | |
UncaughtHandler | uncaughtHandler |
The function to be executed in the event of an uncaught exception. |
Represents the exception context of the program.
Each part of the program that makes use of the exception handling system, needs an exception context. This context holds a stack of ExceptionFrame's, in which exception information is recorded.
The current (inner) exception frame of this context.
The array of mappings between the signals and exceptions.
The number of elements in the array of mappings.
The function to be executed in the event of an uncaught exception.