blob: 6fc81245e515500b6c3d80bd6174761997e6950f [file] [log] [blame]
package org.apache.polygene.spi.query;
/**
* This is the exception for Indexing problems. Subtypes should be created for specific problems.
*
*/
public abstract class IndexingException extends RuntimeException
{
public IndexingException( String message )
{
super( message );
}
public IndexingException( String message, Throwable cause )
{
super( message, cause );
}
}