Exception
This is the base class for all exceptions.constructor
Exception(module, msg, trace=null)
parameters:
parameters:
- module
The module the Exception belongs to. - msg
The error message for the user. - trace
The error causing this Exception if available.
instance methods
- toString()
Returns the string representation of a the exception. - toTraceString()
Returns the complete trace of the exception as a String.
instance properties
- name
The name of the Exception(set to class name by default) - module
The module the Exception belongs to. - message
The error message for the user. - trace
The error causing this Exception if available.