Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Comment:
Migration of unmigrated content due to installation of a new plugin
The ErrorCode Service Class
The service class ErrorCode is used to record errors that occur doing processing operations. These errors can occur within any class; therefore, to avoid circular references, this class is completely self-contained. There is a setter ErrorCode_SetCode and a getter ErrorCode_GetCode available for use via the engine-based facilities of the system. It can also be set and accessed -- i.e., tested -- directly via the global field ErrorCode_Value.The field ErrorCode_Value
PrototypeCode Block | ||||||
---|---|---|---|---|---|---|
| ||||||
extern int ErrorCode_Value; |
The method ErrorCode_GetCode
PrototypeCode Block | ||||||
---|---|---|---|---|---|---|
| ||||||
int ErrorCode_GetCode(void); |
The method ErrorCode_SetCode
PrototypeCode Block | ||||||
---|---|---|---|---|---|---|
| ||||||
void ErrorCode_SetCode(int errorCode); |
Parameter | Description |
errorCode | Specifies the new value of the processing error code. |
Panel | ||||
---|---|---|---|---|
| ||||
|