? BackingStoreException

java.lang.Object
java.lang.Throwable
java.lang.Exception
org.osgi.service.prefs.BackingStoreException
????????:
Serializable

public class BackingStoreException extends Exception
Thrown to indicate that a preferences operation could not complete because of a failure in the backing store, or a failure to contact the backing store.
????:
  • ???????

    • BackingStoreException

      public BackingStoreException(String message)
      Constructs a BackingStoreException with the specified detail message.
      ??:
      message - The detail message.
    • BackingStoreException

      public BackingStoreException(String message, Throwable cause)
      Constructs a BackingStoreException with the specified detail message.
      ??:
      message - The detail message.
      cause - The cause of the exception. May be null.
      ???????:
      1.1
  • ??????

    • getCause

      public Throwable getCause()
      Returns the cause of this exception or null if no cause was set.
      ??:
      getCause ??? Throwable
      ??:
      The cause of this exception or null if no cause was set.
      ???????:
      1.1
    • initCause

      public Throwable initCause(Throwable cause)
      Initializes the cause of this exception to the specified value.
      ??:
      initCause ??? Throwable
      ??:
      cause - The cause of this exception.
      ??:
      This exception.
      ??:
      IllegalArgumentException - If the specified cause is this exception.
      IllegalStateException - If the cause of this exception has already been set.
      ???????:
      1.1