Added in API level 1

InvalidPreferencesFormatException

open class InvalidPreferencesFormatException : Exception
kotlin.Any
   ↳ kotlin.Throwable
   ↳ java.lang.Exception
   ↳ java.util.prefs.InvalidPreferencesFormatException

Thrown to indicate that an operation could not complete because the input did not conform to the appropriate XML document type for a collection of preferences, as per the Preferences specification.

Summary

Public constructors

Constructs an InvalidPreferencesFormatException with the specified cause.

Constructs an InvalidPreferencesFormatException with the specified detail message.

Constructs an InvalidPreferencesFormatException with the specified detail message and cause.

Public constructors

InvalidPreferencesFormatException

Added in API level 1
InvalidPreferencesFormatException(cause: Throwable!)

Constructs an InvalidPreferencesFormatException with the specified cause.

Parameters
cause Throwable!: the cause (which is saved for later retrieval by the Throwable#getCause() method).

InvalidPreferencesFormatException

Added in API level 1
InvalidPreferencesFormatException(message: String!)

Constructs an InvalidPreferencesFormatException with the specified detail message.

Parameters
message String!: the detail message. The detail message is saved for later retrieval by the Throwable#getMessage() method.

InvalidPreferencesFormatException

Added in API level 1
InvalidPreferencesFormatException(
    message: String!,
    cause: Throwable!)

Constructs an InvalidPreferencesFormatException with the specified detail message and cause.

Parameters
message String!: the detail message. The detail message is saved for later retrieval by the Throwable#getMessage() method.
cause Throwable!: the cause (which is saved for later retrieval by the Throwable#getCause() method).