blob: 59bacdb8083e4ef31646fa2287d92d94ed847d20 [file] [log] [blame]
package org.apache.polygene.api.indexing;
/**
* 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 );
}
}