模块  java.prefs
软件包  java.util.prefs

Class InvalidPreferencesFormatException

  • 实现的所有接口
    Serializable

    public class InvalidPreferencesFormatException
    extends 异常
    抛出指示操作无法完成,因为输入不符合首选项集合的相应XML文档类型,根据Preferences规范。
    从以下版本开始:
    1.4
    另请参见:
    PreferencesSerialized Form
    • 构造方法详细信息

      • 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()方法检索)。