×

Error Handling

The GetErrorMessage() method of the manager object can be used to retrieve the error message, if the result of the method call does not
return a zero value. The language of the returned error message is based on the language, which has been used by installing Topal.
Find additional information under GetErrorMessage()
 
Get error message
Topal has been designed to return Error codes in case of a failure or an unsuccessful command execution. Each method will return zero (0) if command has been executed successfully,
or return an Error code <> 0. Call the static method GetErrorMessage() to receive an error message, if a command finished with Error code <> 0
Since this method is static it can be used globally to retrieve Error messages.
 
Error
    
// Load transactions via LoadTransactions() 
int errorcode = manager.LoadTransactions();
string message = manager.GetErrorMessage(errorcode);
MessageBox.Show(message);  

    
  
Error
    
UNDER CONSTRUCTION