[Overview][Types][Classes][Variables][Index] |
Show an exception to the user
Source position: custapp.pp line 57
public procedure TCustomApplication.ShowException( |
E: Exception |
); virtual; |
E |
|
Exception object to show |
ShowException should be overridden by descendent classes to show an exception message to the user. The default behaviour is to call the ShowException procedure in the SysUtils unit.
Descendent classes should do something appropriate for their context: GUI applications can show a message box, daemon applications can write the exception message to the system log, web applications can send a 500 error response code.
None.
|
Handle an exception. |
|
TCustomApplication.StopException |