1 16 17 package org.springframework.core.task; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 30 public class TaskRejectedException extends NestedRuntimeException { 31 32 37 public TaskRejectedException(String msg) { 38 super(msg); 39 } 40 41 49 public TaskRejectedException(String msg, Throwable cause) { 50 super(msg, cause); 51 } 52 53 } 54 | Popular Tags |