immutable class FMT_ERROR < $STR
****
Errors raised by FMT belong to this class.


Flattened version is here

Ancestors
$STR



Public


Readable Attributes
attr error: INT;
**** Error type as defined in FMT_ERROR_FLAGS.
attr str: STR;
**** Literal message for the user providing more information.

Readonly Shareds
shared raise_exceptions: BOOL := false;
**** Most of the exceptions are returned instead of the string translation of the number. If this flag is set to 'true' all exceptions are being raised for user processing. NEVER touch this variable from within a library!

Writable Shareds
shared raise_exceptions: BOOL := false;
**** Most of the exceptions are returned instead of the string translation of the number. If this flag is set to 'true' all exceptions are being raised for user processing. NEVER touch this variable from within a library!

Constants

Features
create(err:INT,s:STR): SAME
create(s:STR): SAME


Private

attr error: INT;
**** Error type as defined in FMT_ERROR_FLAGS.
attr str: STR;
**** Literal message for the user providing more information.

The Sather Home Page