Message Code

Message Code

A message code is a code associated with an error raised during the execution of a script.
Each message code associated with an error signals the fault condition occurred during a process and helps tracing back the cause of the error.

Message code can be found in the following locations.

Message code structure

Message code consists of 3 alphanumeric fields each of which, respectively from its left most field to the right, is a category code, an unique numeric identifier within the category, and severity.

Category

The category of the message code. The category consists of arbitrary capitalized numeric characters.

Code

The code in the category of the message code. The code consists of unique 4 digit numeric characters.

Severity

The severity of the message code. The severity consists of a capitalized character.

Severity Description
F
Represents FATAL error. Suggests that unrecoverable error has occurred.
E
Represents ERROR in general. Suggests errors or unexpected conditions.
W
Represents WARNING in general. Suggests of runtime situations that are undesirable or unexpected, but not necessarily an error.
I
Represents INFOMATION in general. Useful informative messages.

Codes

Category Description Remarks
FILE The following message codes correspond to the error occurred during file operations.  
IO The following message codes correspond to the error occurred during I/O operations.  
NETWORK The following message codes correspond to the error occurred when network related operations performed have failed.  
DB The following message codes correspond to the error occurred during database operations.  
TRANSACTION The following message codes correspond to the error occurred during a transactional process.  
DATA The following message codes correspond to error messages asserted when erroneousness in data is detected.  
SECURITY The following message codes correspond to the error which indicates that security violation has occurred.  
MEMORY The following message codes correspond to the error occurred because the system has run out of heap memory space and failed to satisfy object allocation requested.  
EXTERNAL The following message codes correspond to error messages raised due to unsatisfied conditions of externally installed dependent components that are required to perform ConnectServer operations.  
SCRIPT The following message codes corresponds to the error occurred during script execution.  
PSP The following message codes correspond to the error related to PSP.  
MAPPER The following message codes correspond to the error occurred during Mapper operations.  
MERGE The following message codes correspond to the error occurred during Merge Mapper operations.  
USER The following message codes correspond to the error that indicates the occurrence of the Exception Notice.  
OTHER All other message codes which do not belong to a specific category.  

Limitations