1 16 17 package org.springframework.context; 18 19 import org.springframework.beans.FatalBeanException; 20 21 26 public class ApplicationContextException extends FatalBeanException { 27 28 33 public ApplicationContextException(String msg) { 34 super(msg); 35 } 36 37 43 public ApplicationContextException(String msg, Throwable cause) { 44 super(msg, cause); 45 } 46 47 } 48 | Popular Tags |