模块  java.base
软件包  java.time.format

Class DateTimeParseException

  • 实现的所有接口
    Serializable

    public class DateTimeParseException
    extends DateTimeException
    解析期间发生错误时抛出的异常。

    此异常包括正在解析的文本和错误索引。

    实现要求:
    此类适用于单个线程。
    从以下版本开始:
    1.8
    另请参见:
    Serialized Form
    • 构造方法详细信息

      • DateTimeParseException

        public DateTimeParseException​(String message,
                                      CharSequence parsedData,
                                      int errorIndex)
        使用指定的消息构造一个新的异常。
        参数
        message - 用于此异常的消息可能为null
        parsedData - 已解析的文本不应为null
        errorIndex - 解析后的字符串中的索引无效,应该是有效索引
      • DateTimeParseException

        public DateTimeParseException​(String message,
                                      CharSequence parsedData,
                                      int errorIndex,
                                      Throwable cause)
        使用指定的消息和原因构造一个新的异常。
        参数
        message - 用于此异常的消息可能为null
        parsedData - 已解析的文本不应为null
        errorIndex - 解析后的字符串中的索引无效,应该是有效索引
        cause - 原因异常,可能为null
    • 方法详细信息

      • getParsedString

        public String getParsedString()
        返回正在解析的字符串。
        结果
        正在解析的字符串不应为null。
      • getErrorIndex

        public int getErrorIndex()
        返回找到错误的索引。
        结果
        解析后的字符串中的索引无效,应该是有效的索引