org.daisy.pipeline.tts.scheduler.RecoverableError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tts-common Show documentation
Show all versions of tts-common Show documentation
Common API for TTS functionality
The newest version!
package org.daisy.pipeline.tts.scheduler;
/**
* Exception to be raised by Schedulable object when an error occurred but that object can be
* rescheduled.
*
* @author Nicolas Pavie @ braillenet.org
*/
public class RecoverableError extends Exception {
private static final long serialVersionUID = 1L;
public RecoverableError(String message) {
super(message);
}
public RecoverableError(String message, Throwable cause) {
super(message, cause);
}
public RecoverableError(Throwable cause) {
super(cause);
}
}