|
【目录】 【上一页】 【下一页】 【索引】
netscape.javascript.JSException
The public class JSException extends Exception.
java.lang.Object | +----java.lang.Throwable | +----java.lang.Exception | +----netscape.javascript.JSException
JSException is an exception that is thrown when JavaScript code returns an error.
The netscape.javascript.JSException class has the following constructors:
表 14.3 Constructors for the JSException class
The following sections show the declaration and usage of these constructors.
Constructor. Constructs a JSException. You specify whether the JSException has a detail message and other information.
1. public JSException()
2. public JSException(String s)
3. public JSException(String s, String filename, int lineno, String source, int tokenIndex)
参数
A detail message is a string that describes this particular exception.
Each form constructs a JSException with different information:
【目录】 【上一页】 【下一页】 【索引】
|