FileDocCategorySizeDatePackage
NotIndexableException.javaAPI DocApache Lucene 2.1.02139Wed Feb 14 10:46:04 GMT 2007org.apache.lucene.gdata.search.analysis

NotIndexableException

public class NotIndexableException extends Exception
This exception will be thrown by ContentStrategy instances if an exception occurs while retrieving content from entries
author
Simon Willnauer

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


             
      
        super();

    
public NotIndexableException(String arg0)
Constructs a new NotIndexableException with the specified detail message.

param
arg0 - detail message

        super(arg0);

    
public NotIndexableException(String arg0, Throwable arg1)
Constructs a new NotIndexableException with the specified detail message and nested exception.

param
arg0 - detail message
param
arg1 - nested exception

        super(arg0, arg1);

    
public NotIndexableException(Throwable arg0)
Constructs a new NotIndexableException with a nested exception caused this exception.

param
arg0 - nested exception

        super(arg0);

    
Methods Summary