Little class to hold the three attributes of a transform error.
More...
Little class to hold the three attributes of a transform error.
Definition at line 17 of file trfExitCodes.py.
◆ __init__()
| python.trfExitCodes.trfExitCode.__init__ |
( |
| self, |
|
|
| acronymn, |
|
|
| numcode, |
|
|
| description, |
|
|
| signalname = "" ) |
Exit code class instantiation.
- Parameters
-
| acronymn | The internal transform acronymn for this error code |
| numcode | The numerical exit code for this error |
| description | A human comprehensible description of this error's meaning |
| signame | The original signal name (only relevant for signals) |
Definition at line 24 of file trfExitCodes.py.
24 def __init__(self, acronymn, numcode, description, signalname = ""):
25 self._acronymn = acronymn
26 self._numcode = numcode
27 self._description = description
28 self._signalname = signalname
29
◆ acronymn()
| python.trfExitCodes.trfExitCode.acronymn |
( |
| self | ) |
|
Definition at line 31 of file trfExitCodes.py.
31 def acronymn(self):
32 return self._acronymn
33
◆ description()
| python.trfExitCodes.trfExitCode.description |
( |
| self | ) |
|
Definition at line 39 of file trfExitCodes.py.
40 return self._description
41
std::string description
glabal timer - how long have I taken so far?
◆ numcode()
| python.trfExitCodes.trfExitCode.numcode |
( |
| self | ) |
|
Definition at line 35 of file trfExitCodes.py.
35 def numcode(self):
36 return self._numcode
37
◆ signalname()
| python.trfExitCodes.trfExitCode.signalname |
( |
| self | ) |
|
Definition at line 43 of file trfExitCodes.py.
43 def signalname(self):
44 return self._signalname
45
◆ _acronymn
| python.trfExitCodes.trfExitCode._acronymn = acronymn |
|
protected |
◆ _description
| python.trfExitCodes.trfExitCode._description = description |
|
protected |
◆ _numcode
| python.trfExitCodes.trfExitCode._numcode = numcode |
|
protected |
◆ _signalname
| python.trfExitCodes.trfExitCode._signalname = signalname |
|
protected |
The documentation for this class was generated from the following file: