FileDocCategorySizeDatePackage
GdataIndexerException.javaAPI DocApache Lucene 2.1.02017Wed Feb 14 10:46:06 GMT 2007org.apache.lucene.gdata.search.index

GdataIndexerException

public class GdataIndexerException extends RuntimeException
This exception will be thrown if an exception in the indexing component occurs
author
Simon Willnauer

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public GdataIndexerException()
Creates a new GdataIndexerException


             
      
        super();

    
public GdataIndexerException(String arg0)
Creates a new GdataIndexerException with a new exception message

param
arg0 - exception message

        super(arg0);

    
public GdataIndexerException(String arg0, Throwable arg1)
Creates a new GdataIndexerException with a new exception message and a root cause

param
arg0 - exception message
param
arg1 - the root cause

        super(arg0, arg1);

    
public GdataIndexerException(Throwable arg0)
Creates a new GdataIndexerException with a root cause

param
arg0 - the root cause

        super(arg0);

    
Methods Summary