From OpenSCADAWiki
Jump to: navigation, search
(Importing a new version from external source)
(Importing a new version from external source)
 
Line 14: Line 14:
 
* ''TError::Tr_ErrDevice (14)'' — transport level, device error;
 
* ''TError::Tr_ErrDevice (14)'' — transport level, device error;
 
* ''TError::Tr_ErrUnknown (15)'' — transport level, unknown error;
 
* ''TError::Tr_ErrUnknown (15)'' — transport level, unknown error;
 +
* ''TError::Prt_Unknown (40)'' — protocol level, unknown error;
 +
* ''TError::Prt_ErrCommon (41)'' — protocol level, common error;
 +
* ''TError::Prt_ErrParams (42)'' — protocol level, parameters error;
 
* ''TError::DB_SQL_Connect (20)'' — DB level, error the SQL-connection;
 
* ''TError::DB_SQL_Connect (20)'' — DB level, error the SQL-connection;
 
* ''TError::DB_SQL_Query (21)'' — DB level, error the SQL-query;
 
* ''TError::DB_SQL_Query (21)'' — DB level, error the SQL-query;

Latest revision as of 20:38, 15 April 2025

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)
=== {{Anch|TError|Error exception (TError)}} ===
'''Data:'''<br/>
Error codes (enum — TError::Codes):
* ''TError::NoCode (0)'', ''TError::NoError (0)'' — no error;
* ''TError::Core_CntrWarning (1)'' — core level, warning of the control interface;
* ''TError::Core_CntrError (2)'' — core level, error of the control interface;
* ''TError::Core_RWLock_EDEADLK (3)'' — core level, deadlock of the RWLock;
* ''TError::Core_TaskCrt (4)'' — core level, error the task-thread creation;
* ''TError::Core_NoNode (5)'' — no node, error at accessing some missing node;
* ''TError::Tr_Connect (10)'' — transport level, error connection;
* ''TError::Tr_UnknownHost (11)'' — transport level, unknown host;
* ''TError::Tr_ErrTransport (12)'' — transport level, transport error;
* ''TError::Tr_ErrResponse (13)'' — transport level, response error;
* ''TError::Tr_ErrDevice (14)'' — transport level, device error;
* ''TError::Tr_ErrUnknown (15)'' — transport level, unknown error;
* ''TError::Prt_Unknown (40)'' — protocol level, unknown error;
* ''TError::Prt_ErrCommon (41)'' — protocol level, common error;
* ''TError::Prt_ErrParams (42)'' — protocol level, parameters error;
* ''TError::DB_SQL_Connect (20)'' — DB level, error the SQL-connection;
* ''TError::DB_SQL_Query (21)'' — DB level, error the SQL-query;
* ''TError::DB_ReadOnly (23)'' — DB in the Read Only mode;
* ''TError::Arch_Val_OldBufVl (30)'' — archives level, old value placing to the value buffer;
* ''TError::Arch_Val_DblVSrc (31)'' — double value source setting try;
* ''TError::EXT (100)'' — extended errors of OpenSCADA modules to use as TError::EXT+{N}.
Translation=== {{Anch|TError|Error exception (TError)}} ===
'''Data:'''<br/>
Error codes (enum — TError::Codes):
* ''TError::NoCode (0)'', ''TError::NoError (0)'' — no error;
* ''TError::Core_CntrWarning (1)'' — core level, warning of the control interface;
* ''TError::Core_CntrError (2)'' — core level, error of the control interface;
* ''TError::Core_RWLock_EDEADLK (3)'' — core level, deadlock of the RWLock;
* ''TError::Core_TaskCrt (4)'' — core level, error the task-thread creation;
* ''TError::Core_NoNode (5)'' — no node, error at accessing some missing node;
* ''TError::Tr_Connect (10)'' — transport level, error connection;
* ''TError::Tr_UnknownHost (11)'' — transport level, unknown host;
* ''TError::Tr_ErrTransport (12)'' — transport level, transport error;
* ''TError::Tr_ErrResponse (13)'' — transport level, response error;
* ''TError::Tr_ErrDevice (14)'' — transport level, device error;
* ''TError::Tr_ErrUnknown (15)'' — transport level, unknown error;
* ''TError::Prt_Unknown (40)'' — protocol level, unknown error;
* ''TError::Prt_ErrCommon (41)'' — protocol level, common error;
* ''TError::Prt_ErrParams (42)'' — protocol level, parameters error;
* ''TError::DB_SQL_Connect (20)'' — DB level, error the SQL-connection;
* ''TError::DB_SQL_Query (21)'' — DB level, error the SQL-query;
* ''TError::DB_ReadOnly (23)'' — DB in the Read Only mode;
* ''TError::Arch_Val_OldBufVl (30)'' — archives level, old value placing to the value buffer;
* ''TError::Arch_Val_DblVSrc (31)'' — double value source setting try;
* ''TError::EXT (100)'' — extended errors of OpenSCADA modules to use as TError::EXT+{N}.

Error exception (TError)

Data:
Error codes (enum — TError::Codes):

  • TError::NoCode (0), TError::NoError (0) — no error;
  • TError::Core_CntrWarning (1) — core level, warning of the control interface;
  • TError::Core_CntrError (2) — core level, error of the control interface;
  • TError::Core_RWLock_EDEADLK (3) — core level, deadlock of the RWLock;
  • TError::Core_TaskCrt (4) — core level, error the task-thread creation;
  • TError::Core_NoNode (5) — no node, error at accessing some missing node;
  • TError::Tr_Connect (10) — transport level, error connection;
  • TError::Tr_UnknownHost (11) — transport level, unknown host;
  • TError::Tr_ErrTransport (12) — transport level, transport error;
  • TError::Tr_ErrResponse (13) — transport level, response error;
  • TError::Tr_ErrDevice (14) — transport level, device error;
  • TError::Tr_ErrUnknown (15) — transport level, unknown error;
  • TError::Prt_Unknown (40) — protocol level, unknown error;
  • TError::Prt_ErrCommon (41) — protocol level, common error;
  • TError::Prt_ErrParams (42) — protocol level, parameters error;
  • TError::DB_SQL_Connect (20) — DB level, error the SQL-connection;
  • TError::DB_SQL_Query (21) — DB level, error the SQL-query;
  • TError::DB_ReadOnly (23) — DB in the Read Only mode;
  • TError::Arch_Val_OldBufVl (30) — archives level, old value placing to the value buffer;
  • TError::Arch_Val_DblVSrc (31) — double value source setting try;
  • TError::EXT (100) — extended errors of OpenSCADA modules to use as TError::EXT+{N}.