- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.util.prefs.InvalidPreferencesFormatException
-
- All Implemented Interfaces:
-
Serializable
public class InvalidPreferencesFormatException extends 异常
抛出以表示操作无法完成,因为输入符合Preferences
规范的偏好集合的相应XML文档类型。- 从以下版本开始:
- 1.4
- 另请参见:
-
Preferences
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 InvalidPreferencesFormatException(String message)
使用指定的详细消息构造InvalidPreferencesFormatException。InvalidPreferencesFormatException(String message, Throwable cause)
构造一个InvalidPreferencesFormatException与指定的详细信息和原因。InvalidPreferencesFormatException(Throwable cause)
构造具有指定原因的InvalidPreferencesFormatException。
-
方法摘要
-
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
-
-
-
-
构造方法详细信息
-
InvalidPreferencesFormatException
public InvalidPreferencesFormatException(Throwable cause)
构造具有指定原因的InvalidPreferencesFormatException。- 参数
-
cause
- 原因(保存以供Throwable.getCause()
方法稍后检索)。
-
InvalidPreferencesFormatException
public InvalidPreferencesFormatException(String message)
使用指定的详细消息构造InvalidPreferencesFormatException。- 参数
-
message
- 详细信息。 保存详细信息以供稍后通过Throwable.getMessage()
检索。
-
InvalidPreferencesFormatException
public InvalidPreferencesFormatException(String message, Throwable cause)
构造一个InvalidPreferencesFormatException与指定的详细信息和原因。- 参数
-
message
- 详细信息。 保存详细信息以供稍后通过Throwable.getMessage()
检索。 -
cause
- 原因(由Throwable.getCause()
方法保存供以后检索)。
-
-