exception - Palamecia/mint GitHub Wiki
Description
This module provides classes to store the context of exceptions. Classes of this
module are meaned to be used with the raise
statement.
The core class of this module is Exception.Exception which provides the base
implementation of exceptions. It especially provides a show
method that print
an error message using the toString
method of the object. Classes that uses
this base class can then implement toString
method to provide an error message
or overrdie the show
method to use a different behaviour.
This module also provides classes for common exceptions context.