| |
|
| java.lang.Object java.lang.Throwable java.lang.Exception java.lang.RuntimeException org.mmbase.storage.StorageException org.mmbase.storage.StorageFactoryException
StorageFactoryException | public class StorageFactoryException extends StorageException (Code) | | This exception gets thrown when an error occurred during instantiation of the StorageFactory.
since: MMBase-1.7 author: Pierre van Rooden version: $Id: StorageFactoryException.java,v 1.3 2005/10/02 16:16:42 michiel Exp $ |
StorageFactoryException | public StorageFactoryException()(Code) | | Constructs a StorageFactoryException with null as its
message.
|
StorageFactoryException | public StorageFactoryException(String message)(Code) | | Constructs a StorageFactoryException with the specified detail
message.
Parameters: message - a description of the error |
StorageFactoryException | public StorageFactoryException(Throwable cause)(Code) | | Constructs a StorageFactoryException with the detail
message of the original exception.
The cause can be retrieved with getCause().
Parameters: cause - the cause of the error |
StorageFactoryException | public StorageFactoryException(String message, Throwable cause)(Code) | | Constructs a StorageFactoryException with the detail
message of the original exception.
The cause can be retrieved with getCause().
Parameters: message - a description of the error Parameters: cause - the cause of the error |
|
|
|