ExitException type

Represents an exception that should cause exit from the program

Direct parent types

Exception
Represents exceptional situaution. All thrown things shouhld inherit Exception.
Direct subtypes: 10

Direct children types

FatalError
Represents a fatal error condition that causes the program to exit.
NormalExit
Undocumented

Methods

ExitCode(ee:ExitException) Source: stdlib.ngs:5027
Convert ExitException to an exit code.

Returns

ee.exit_code
init(ee:ExitException, message:Str, exit_code:Int=1) Source: stdlib.ngs:5019
Initializes ExitException.
init(ee:ExitException, exit_code:Int=1) Source: stdlib.ngs:5023
Undocumented