All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.daisy.pipeline.tts.scheduler.RecoverableError Maven / Gradle / Ivy

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);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy