![JAR search and dependency download from the Maven repository](/logo.png)
com.github.ltsopensource.core.exception.CronException Maven / Gradle / Ivy
package com.github.ltsopensource.core.exception;
/**
* Robert HG ([email protected]) on 5/27/15.
*/
public class CronException extends RuntimeException {
private static final long serialVersionUID = -5252237483450100864L;
public CronException() {
super();
}
public CronException(String message) {
super(message);
}
public CronException(String message, Throwable cause) {
super(message, cause);
}
public CronException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy