所有类
java.util
类 InvalidPropertiesFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.io.IOException
java.util.InvalidPropertiesFormatException
-
所有已实现的接口:
-
Serializable
-
public class InvalidPropertiesFormatException
- extends IOException
当按照 Properties
规范,输入内容不符合属性集合的正确 XML 文档类型,从而无法完成操作时,抛出此异常。
注意,虽然 InvalidPropertiesFormatException 从 Exception 继承了 Serializable 接口,但是它并非 Serializable。实现适当的序列化方法会抛出 NotSerializableException。
-
从以下版本开始:
-
1.5
-
另请参见:
-
Properties
从类 java.lang.Throwable 继承的方法 |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
InvalidPropertiesFormatException
public InvalidPropertiesFormatException(Throwable cause)
-
构造一个带指定原因的 InvalidPropertiesFormatException。
-
参数:
-
cause
- 原因(保存此原因,以便将来通过 Throwable#ggetCause()
方法进行检索)。
InvalidPropertiesFormatException
public InvalidPropertiesFormatException(String message)
-
构造一个带指定详细消息的 InvalidPropertiesFormatException。
-
参数:
-
message
- 详细消息。保存该详细消息,以便将来通过 Throwable.getMessage()
方法进行检索。
所有类