FileDocCategorySizeDatePackage
BackingStoreException.javaAPI DocGlassfish v2 API3267Fri May 04 22:35:26 BST 2007com.sun.appserv.ha.spi

BackingStoreException

public class BackingStoreException extends Exception
This exception is thrown to signal any BackingStore specific exception. BackingStore.getCause() can be used to get the actual store specific exception.

Fields Summary
Constructors Summary
public BackingStoreException()
Creates a BackingStoreException with null as its detail message. The cause is not initialized, and may subsequently be initialized by a call to Throwable.initCause(java.lang.Throwable).

    
public BackingStoreException(String message)
constructs a BackingStoreException with the specified detail message

param
message the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.

        super(message);
    
public BackingStoreException(String message, Throwable th)
Constructs a new BackingStoreException exception with the specified cause and a detail message of (cause==null ? null : cause.toString())

param
message the detail message. The detail message is saved for
param
th the cause

        super(message, th);
    
Methods Summary