FileDocCategorySizeDatePackage
StorageException.javaAPI DocApache Lucene 2.1.01953Wed Feb 14 10:46:04 GMT 2007org.apache.lucene.gdata.storage

StorageException

public class StorageException extends RuntimeException
The StorageException will be throw if any error or exception inside the storage implementation occures. This exception hides all other exceptions from inside the storage.
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public StorageException()
Constructs a new StorageException

 
 
                
       
        super(); 
 
    
public StorageException(String message)
Constructs a new StorageException

param
message - the exception message

 
        super(message); 
 
    
public StorageException(String message, Throwable cause)
Constructs a new StorageException

param
message - the exception message
param
cause - the root cause of this exception

 
        super(message, cause); 
 
    
public StorageException(Throwable cause)
Constructs a new StorageException

param
cause - the root cause of this exception

 
        super(cause); 
 
    
Methods Summary