1 2 18 19 22 package org.quartz; 23 24 32 public class JobPersistenceException extends SchedulerException { 33 34 41 42 47 public JobPersistenceException(String msg) { 48 super(msg); 49 setErrorCode(ERR_PERSISTENCE); 50 } 51 52 58 public JobPersistenceException(String msg, int errCode) { 59 super(msg, errCode); 60 } 61 62 68 public JobPersistenceException(String msg, Throwable cause) { 69 super(msg, cause); 70 setErrorCode(ERR_PERSISTENCE); 71 } 72 73 79 public JobPersistenceException(String msg, Throwable cause, int errorCode) { 80 super(msg, cause, errorCode); 81 } 82 83 } 84 | Popular Tags |