- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.text.ParseException
-
- All Implemented Interfaces:
-
Serializable
public class ParseException extends 异常
表示解析时意外出现错误。- 从以下版本开始:
- 1.1
- 另请参见:
-
异常
,Format
,FieldPosition
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 ParseException(String s, int errorOffset)
构造具有指定的详细消息和偏移量的ParseException。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 int
getErrorOffset()
返回发现错误的位置。-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
构造方法详细信息
-
ParseException
public ParseException(String s, int errorOffset)
构造具有指定的详细消息和偏移量的ParseException。 详细消息是描述此特定异常的字符串。- 参数
-
s
- 详细信息 -
errorOffset
- 解析时发现错误的位置。
-
-