Index (Frames) | Index (No Frames) | Package | Package Tree | Tree
java.util.prefs

Class BackingStoreException

java.lang.Object
|
+--java.lang.Throwable
   |
   +--java.lang.Exception
      |
      +--java.util.prefs.BackingStoreException


public class BackingStoreException

extends Exception

Chained exception thrown when backing store fails. This exception is only thrown from methods that actually have to access the backing store, such as clear(), keys(), childrenNames(), nodeExists(), removeNode(), flush(), sync(), exportNode(), exportSubTree(); normal operations do not throw BackingStoreExceptions.

Note that although this class inherits the Serializable interface, an attempt to serialize will fail with a NotSerializableException.

Since:Author:

Constructor Summary

BackingStoreException(java.lang.String message)

Creates a new exception with a descriptive message.
BackingStoreException(java.lang.Throwable cause)

Create a new exception with the given cause.

Constructor Details

BackingStoreException

public BackingStoreException(java.lang.String message)

Creates a new exception with a descriptive message.

Parameters:


BackingStoreException

public BackingStoreException(java.lang.Throwable cause)

Create a new exception with the given cause.

Parameters: