com.github.ltsopensource.spring.quartz.QuartzProxyException Maven / Gradle / Ivy
The newest version!
package com.github.ltsopensource.spring.quartz;
/**
* @author Robert HG ([email protected]) on 3/27/16.
*/
public class QuartzProxyException extends RuntimeException {
public QuartzProxyException() {
super();
}
public QuartzProxyException(String message) {
super(message);
}
public QuartzProxyException(String message, Throwable cause) {
super(message, cause);
}
public QuartzProxyException(Throwable cause) {
super(cause);
}
}