TABLE OF CONTENTS


Hunter/ErrorDialog [ Packages ]

[ Top ] [ Packages ]

FUNCTION

 Provide code to show informations about program crash (unhandled exception).

SOURCE

package ErrorDialog is

ErrorDialog/CreateErrorUI [ Subprograms ]

[ Top ] [ ErrorDialog ] [ Subprograms ]

FUNCTION

 Create UI to show information about crash

SOURCE

   procedure CreateErrorUI;

ErrorDialog/On_Exception [ Subprograms ]

[ Top ] [ ErrorDialog ] [ Subprograms ]

FUNCTION

 Handle GUI exceptions

SOURCE

   procedure On_Exception(An_Exception: Exception_Occurrence);

PARAMETERS

 An_Exception - Exception's data which occured

ErrorDialog/SaveException [ Subprograms ]

[ Top ] [ ErrorDialog ] [ Subprograms ]

FUNCTION

 Save exception data to file and show error dialog

SOURCE

   procedure SaveException
     (An_Exception: Exception_Occurrence; PrintToTerminal: Boolean);

PARAMETERS

 An_Exception    - Exception's data which occured
 PrintToTerminal - If true, information about exception will be printed
                   in terminal
>