FileDocCategorySizeDatePackage
FeedNotFoundException.javaAPI DocApache Lucene 2.1.01372Wed Feb 14 10:46:06 GMT 2007org.apache.lucene.gdata.server

FeedNotFoundException

public class FeedNotFoundException extends ServiceException
Will be thrown if a requested feed could not be found or is not registerd.
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public FeedNotFoundException(int errorCode)
Constructs a new FeedNotFoundException

param
errorCode - gdata request errorcode

 
 
                   
       
        super(errorCode);
        

    
public FeedNotFoundException(String arg0, int errorCode)
Constructs a new FeedNotFoundException

param
arg0 - the exception message
param
errorCode - gdata request errorcode

        super(arg0, errorCode);
        
    
public FeedNotFoundException(String arg0, Throwable arg1, int errorCode)
Constructs a new FeedNotFoundException

param
arg0 - the exceptin message
param
arg1 - the exception cause
param
errorCode - gdata request errorcode

        super(arg0, arg1, errorCode);
        
        
    
public FeedNotFoundException(Throwable arg0, int errorCode)
Constructs a new FeedNotFoundException

param
arg0 - the exception cause
param
errorCode - gdata request errorcode

        super(arg0, errorCode);
        
    
Methods Summary