1 2 18 19 22 package org.quartz; 23 24 33 public class SchedulerConfigException extends SchedulerException { 34 35 42 43 48 public SchedulerConfigException(String msg) { 49 super(msg, ERR_BAD_CONFIGURATION); 50 } 51 52 58 public SchedulerConfigException(String msg, Throwable cause) { 59 super(msg, cause); 60 setErrorCode(ERR_BAD_CONFIGURATION); 61 } 62 63 } 64 | Popular Tags |