Class jls.lang.Exception

Provide the base Exception.
Defined in: Exception.js.

Class Summary
Constructor Attributes Constructor Name and Description
 
jls.lang.Exception(message, cause, name)
Method Summary
Method Attributes Method Name and Description
 
Returns the cause of this exception or null if the cause is nonexistent or unknown.
 
Returns the detail message string of this exception.
 
Returns the stack trace of this exception.
 
Prints this exception and its stacktrace.
 
Returns a short description of this exception.
Class Detail
jls.lang.Exception(message, cause, name)
Parameters:
{String} message Optional
The detail message.
{Object} cause Optional
The cause.
name
Method Detail
{Object} getCause()
Returns the cause of this exception or null if the cause is nonexistent or unknown. The cause is the exception that caused this exception to get thrown.
Returns:
{Object} The cause.

{String} getMessage()
Returns the detail message string of this exception.
Returns:
{String} The detail message.

{Array} getStackTrace()
Returns the stack trace of this exception.
Returns:
{Array} The stack trace.

printStackTrace(ps)
Prints this exception and its stacktrace.
Parameters:
{jls.io.PrintStream} ps Optional
The print stream to use.

{String} toString()
Returns a short description of this exception.
Returns:
{String} The detail message.

Documentation generated by JsDoc Toolkit 2.3.2 on Sat Jan 08 2011 02:00:13 GMT+0100 (CET)