org.eclipse.higgins.util.jscript
Class JScriptException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.eclipse.higgins.util.jscript.JScriptException
All Implemented Interfaces:
Serializable

public class JScriptException
extends Exception

See Also:
Serialized Form

Constructor Summary
JScriptException()
          Constructs a new ProcessingException with no message or cause.
JScriptException(String message)
          Constructs a new ProcessingException with a message, but no cause.
JScriptException(String message, Throwable cause)
          Constructs a new JScriptException with a message and a cause.
JScriptException(Throwable cause)
          Constructs a new JScriptException with a cause, but no message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JScriptException

public JScriptException()
Constructs a new ProcessingException with no message or cause.


JScriptException

public JScriptException(String message)
Constructs a new ProcessingException with a message, but no cause. The message is saved for later retrieval by the Throwable.getMessage() method.

Parameters:
message - the detail message (null if nonexistent or unknown)

JScriptException

public JScriptException(Throwable cause)
Constructs a new JScriptException with a cause, but no message. The cause is saved for later retrieval by the Throwable.getCause() method.

Parameters:
cause - the cause (null if nonexistent or unknown)

JScriptException

public JScriptException(String message,
                        Throwable cause)
Constructs a new JScriptException with a message and a cause. The message and cause are saved for later retrieval by the Throwable.getMessage() and Throwable.getCause() methods.

Parameters:
message - the detail message (null if nonexistent or unknown)
cause - the cause (null if nonexistent or unknown)