From OpenSCADAWiki
Jump to: navigation, search
(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

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (Documents/API)
'''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.
Translation'''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.

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.