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

at.chrl.nutils.cron.CronServiceException Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package at.chrl.nutils.cron;

@SuppressWarnings("serial")
public class CronServiceException extends RuntimeException {

	public CronServiceException() {
	}

	public CronServiceException(String message) {
		super(message);
	}

	public CronServiceException(String message, Throwable cause) {
		super(message, cause);
	}

	public CronServiceException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy