public class ScriptException extends 异常
异常
类。
底层脚本实现抛出的检查异常类型必须包含在ScriptException的ScriptException
。
如果此信息可用,该类有成员存储行和列号和文件名。
Constructor and Description |
---|
ScriptException(异常 e)
创建一个
ScriptException 包装一个
异常 抛出的底层解释器。
|
ScriptException(String s)
创建一个
ScriptException 与一个字符串用于其消息。
|
ScriptException(String message, String fileName, int lineNumber)
创建一个
ScriptException ,其中包含消息,文件名和亚麻号码以用于错误消息。
|
ScriptException(String message, String fileName, int lineNumber, int columnNumber)
ScriptException 函数指定消息,文件名,行号和列号。
|
Modifier and Type | Method and Description |
---|---|
int |
getColumnNumber()
获取发生错误的列号。
|
String |
getFileName()
获取导致错误的脚本的源。
|
int |
getLineNumber()
获取发生错误的行号。
|
String |
getMessage()
返回包含传递给构造函数的String以及行和列号以及文件名(如果有的话)已知的消息。
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
public ScriptException(String s)
ScriptException
与一个字符串用于其消息。
文件名和行号和列号未指定。
s
- 消息中要使用的字符串。
public ScriptException(异常 e)
ScriptException
包装异常
由底层解释异常
抛出。
行和列号和文件名未指定。
e
- 包裹的
异常
。
public ScriptException(String message, String fileName, int lineNumber)
ScriptException
,其中包含消息,文件名和亚麻号码以用于错误消息。
message
- 消息中要使用的字符串
fileName
-文件或资源名称描述导致脚本错误的位置
ScriptException
抛出。
lineNumber
- 描述脚本错误导致
ScriptException
被抛出的位置的行号。
public String getMessage()
getMessage
在类别
Throwable
public int getLineNumber()
public int getColumnNumber()
public String getFileName()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.