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