[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Exception object
Source position: objpash.inc line 347
type TExceptObject = record |
||
FObject: TObject; |
|
Exception instance. |
Addr: CodePointer; |
|
Address where exception occurred |
Next: PExceptObject; |
|
Next exception object on the stack. |
refcount: LongInt; |
|
Reference count for this exception object |
Framecount: LongInt; |
|
Number of frames in the exception object |
Frames: PCodePointer; |
|
Pointer to array of frame pointers |
end; |
TExceptObject is the exception description record which is found on the exception stack.