IndexingException.java
698 Bytes
package org.legrog.entities;
/**
* Exception when indexing fails, whatever the reason. Has to be dealt with at service level.
*/
public class IndexingException extends Exception {
public IndexingException() {
super();
}
public IndexingException(String message) {
super(message);
}
public IndexingException(String message, Throwable cause) {
super(message, cause);
}
public IndexingException(Throwable cause) {
super(cause);
}
protected IndexingException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}