1 16 17 package org.springframework.scheduling; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 29 public class SchedulingException extends NestedRuntimeException { 30 31 35 public SchedulingException(String msg) { 36 super(msg); 37 } 38 39 45 public SchedulingException(String msg, Throwable cause) { 46 super(msg, cause); 47 } 48 49 } 50 | Popular Tags |