Class Exception |
The Exception provides the basics. It can be subclassed to provide different types of exceptions.
Details |
Constructor |
Create an exception. Although you can attach a message at this point, it's more common to attach the message when calling the throw method.
default message to attach to this exception.Methods: |
a stack trace (as a string) from the point of Exception |
the message attached to this exception |
Typically, this is the only method overridden by subclasses.
a stack trace (as a list) from the point of Exception |
Display the exception, showing the message and the stacktrace. <[ram outFile -- output stream (defaults to &errout)
Throw the Exception with an attached message.
message to attach to this exception throwFields: |