FileDocCategorySizeDatePackage
StoreException.javaAPI DocGlassfish v2 API2762Fri May 04 22:30:32 BST 2007com.sun.appserv.management.client.prefs

StoreException

public class StoreException extends Exception
An exception class to communicate the error in accessing or mutating the store.
since
Appserver 9.0

Fields Summary
static final long
serialVersionUID
Constructors Summary
public StoreException()
Creates a new instance of StoreException without detail message.

    
                  
      
    
public StoreException(String msg)
Constructs an instance of StoreException with the specified detail message.

param
msg the detail message.

        super(msg);
    
public StoreException(Throwable t)

        super(t);
    
public StoreException(String msg, Throwable t)

        super (msg, t);
    
Methods Summary