1 25 package org.ofbiz.service.job; 26 27 34 public class JobManagerException extends org.ofbiz.base.util.GeneralException { 35 36 39 public JobManagerException() { 40 super(); 41 } 42 43 47 public JobManagerException(String msg) { 48 super(msg); 49 } 50 51 55 public JobManagerException(Throwable nested) { 56 super(nested); 57 } 58 59 64 public JobManagerException(String msg, Throwable nested) { 65 super(msg, nested); 66 } 67 } 68 69 | Popular Tags |