1 17 18 21 package org.quartz.jobs.ee.jms; 22 23 import org.quartz.SchedulerException; 24 25 33 public class JmsJobException extends SchedulerException { 34 35 private static final long serialVersionUID = 3045647075496522093L; 36 37 public JmsJobException() { 38 } 39 40 public JmsJobException(String message) { 41 super(message); 42 } 43 44 public JmsJobException(Throwable cause) { 45 super(cause); 46 } 47 48 public JmsJobException(String message, Throwable cause) { 49 super(message, cause); 50 } 51 52 } 53 | Popular Tags |