Class actuate.Exception
Description
A container for an uncategorized exceptions that also supports specific exceptions. Exception provides an object to pass to a callback function or event handler when an exception occurs. The Exception object contains references to the exception’s origin, description, and messages.
Constructor
The Exception object is constructed when unspecified exceptions occur. The exceptions are divided into three types, which determine the contents of the Exception object. These types are:
*
*
*
Function summary
Table 4-17 lists actuate.Exception functions.
Table 4-17  
actuate.Exception.getDescription
Syntax
string Exception.getDescription( )
Returns exception details as provided by the Server, Client, and User objects.
Returns
String. A detailed description of the error. Information is provided according to the type of exception generated, as shown below:
*
*
*
Example
This example displays the server error description in an alert box:
alert("Server error: " + Exception.getDescription( ));
actuate.Exception.getErrCode
Syntax
string Exception.getErrCode( )
Returns the error code for server exceptions.
Returns
String. A server error code.
Example
This example displays the server error code in an alert box:
alert("Server error: " + Exception.getErrCode( ));
actuate.Exception.getMessage
Syntax
string Exception.getMessage( )
Returns a short message about the exception. This message is set for an actuate.Exception object with the actuate.Exception.initJSException( ) function.
Returns
String. A server error code.
Example
This example displays the error’s short message code in an alert box:
alert("Error Message: " + Exception.getMessage( ));
actuate.Exception.getType
Syntax
string Exception.getType( )
Returns the type of the exception:
*
*
*
Returns
String. A server error code.
Example
This example displays the error type in an alert box:
alert("Error type: " + Exception.getType( ));
actuate.Exception.isExceptionType
Syntax
boolean Exception.isExceptionType(object exceptionType)
Compares the input object to the exception contained in this actuate.Exception object to the exceptionType object argument.
Parameters
exceptionType
Object. Either an Exception object, such as an instance of actuate.Viewer.ViewerException, or the name of an Exception class as a string.
Returns
Boolean. Returns true if the exception contained in this actuate.Exception object matches the exceptionType object argument.
Example
To alert the user when the exception e is a usage error, use code similar to the following:
if (e.isExceptionType(actuate.exception.ERR_USAGE)){
  alert('Usage error occurred!');
}

Additional Links:

Copyright Actuate Corporation 2012