From OpenSCADAWiki
(Importing a new version from external source) |
(Importing a new version from external source) |
||
Line 1: | Line 1: | ||
'''Public methods:''' | '''Public methods:''' | ||
* ''TError( );'' — Default-empty constructor. | * ''TError( );'' — Default-empty constructor. | ||
− | * ''TError( const char *cat, const char *mess, ... );'' — Initialization of the error with the category ''cat'' and the message ''mess'' + arguments. | + | * ''TError( const char *cat, const char *mess, ... ); TError( const string &icat, const string &imess );'' — Initialization of the error with the category ''cat'' and the message ''mess'' + arguments. |
− | * ''TError( int cod, const char *cat, const char *mess, ... );'' — Initialization of the error with the ''code'', the category ''cat'' and the message ''mess'' + arguments. | + | * ''TError( int cod, const char *cat, const char *mess, ... ); TError( int icod, const string &icat, const string &imess );'' — Initialization of the error with the ''code'', the category ''cat'' and the message ''mess'' + arguments. |
Latest revision as of 22:15, 22 April 2023
Public methods:
- TError( ); — Default-empty constructor.
- TError( const char *cat, const char *mess, ... ); TError( const string &icat, const string &imess ); — Initialization of the error with the category cat and the message mess + arguments.
- TError( int cod, const char *cat, const char *mess, ... ); TError( int icod, const string &icat, const string &imess ); — Initialization of the error with the code, the category cat and the message mess + arguments.