Class JSException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
netscape.javascript.JSException
- All Implemented Interfaces:
- Serializable
Deprecated, for removal: This API element is subject to removal in a future version.
The jdk.jsobject module will be delivered with JavaFX.
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.
- Since:
- 1.5
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionDeprecated, for removal: This API element is subject to removal in a future version.Constructs a new JavaScript exception with null as it's detail message.Deprecated, for removal: This API element is subject to removal in a future version.Construct a new JavaScript exception with the specified detail message.Deprecated, for removal: This API element is subject to removal in a future version.Construct a new JavaScript exception with the specified cause.
- 
Method SummaryMethods declared in class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
- 
Constructor Details- 
JSExceptionpublic JSException()Deprecated, for removal: This API element is subject to removal in a future version.Constructs a new JavaScript exception with null as it's detail message.
- 
JSExceptionDeprecated, for removal: This API element is subject to removal in a future version.Construct a new JavaScript exception with the specified detail message.- Parameters:
- s- The detail message
 
- 
JSExceptionDeprecated, for removal: This API element is subject to removal in a future version.Construct a new JavaScript exception with the specified cause.- Parameters:
- t- Throwable cause
 
 
-