1 16 17 package org.springframework.aop; 18 19 import org.springframework.core.NestedRuntimeException; 20 21 28 public class AopInvocationException extends NestedRuntimeException { 29 30 34 public AopInvocationException(String msg) { 35 super(msg); 36 } 37 38 43 public AopInvocationException(String msg, Throwable cause) { 44 super(msg, cause); 45 } 46 47 } 48 | Popular Tags |