Module  java.base
软件包  java.util

Class InvalidPropertiesFormatException

  • All Implemented Interfaces:
    Serializable


    public class InvalidPropertiesFormatException
    extends IOException
    抛出以表示操作无法完成,因为输入符合Properties规范的属性集合的相应XML文档类型。

    请注意,尽管InvalidPropertiesFormatException从Exception继承Serializable接口,但它并不是可串行化的。 实现适当的序列化方法来抛出NotSerializableException。

    从以下版本开始:
    1.5
    另请参见:
    Properties
    • 构造方法详细信息

      • InvalidPropertiesFormatException

        public InvalidPropertiesFormatException​(Throwable cause)
        构造具有指定原因的InvalidPropertiesFormatException。
        参数
        cause - 原因(保存以供 Throwable.getCause()方法后续检索)。
      • InvalidPropertiesFormatException

        public InvalidPropertiesFormatException​(String message)
        使用指定的详细消息构造InvalidPropertiesFormatException。
        参数
        message - 详细信息。 保存详细信息以供以后通过Throwable.getMessage()方法检索。