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

cn.dreampie.quartz.exception.QuartzException Maven / Gradle / Ivy

package cn.dreampie.quartz.exception;

/**
 * DBException
 */
public class QuartzException extends RuntimeException {

  public QuartzException() {
  }

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

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

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














© 2015 - 2025 Weber Informatics LLC | Privacy Policy