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

ResourceNotFoundException

public class ResourceNotFoundException extends StorageException
This exception will be thrown if an requested resource of a resource to modify can not be found
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public ResourceNotFoundException()
Constructs an empty ResourceNotFoundException


             
      
        super();
        // TODO Auto-generated constructor stub
    
public ResourceNotFoundException(String message)
Constructs a new ResourceNotFoundException with an exception message

param
message - the exception message

        super(message);
        // TODO Auto-generated constructor stub
    
public ResourceNotFoundException(String message, Throwable cause)
Constructs a new ResourceNotFoundException with an exception message and a root cause

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

        super(message, cause);
        // TODO Auto-generated constructor stub
    
public ResourceNotFoundException(Throwable cause)
Constructs a new ResourceNotFoundException with a root cause

param
cause - the root cause of this exception

        super(cause);
        // TODO Auto-generated constructor stub
    
Methods Summary