- java.lang.Object
- 
- java.lang.Throwable
- 
- java.lang.Exception
- 
- java.lang.RuntimeException
- 
- netscape.javascript.JSException
 
 
 
 
- 
- All Implemented Interfaces:
- Serializable
 
 public class JSException extends RuntimeException Thrown when an exception is raised in the JavaScript engine. This is merely a marker class to indicate an exception relating to the JavaScript interface.- See Also:
- Serialized Form
 
- 
- 
Constructor SummaryConstructors Constructor Description JSException()Constructs a new JavaScript exception with null as it's detail message.JSException(String s)Construct a new JavaScript exception with the specified detail message.JSException(Throwable t)Construct a new JavaScript exception with the specified cause.
 - 
Method Summary- 
Methods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
JSExceptionpublic JSException() Constructs a new JavaScript exception with null as it's detail message.
 - 
JSExceptionpublic JSException(String s) Construct a new JavaScript exception with the specified detail message.- Parameters:
- s- The detail message
 
 - 
JSExceptionpublic JSException(Throwable t) Construct a new JavaScript exception with the specified cause.- Parameters:
- t- Throwable cause
 
 
- 
 
-