1 16 17 package org.springframework.beans.factory; 18 19 import org.springframework.beans.FatalBeanException; 20 21 34 public class BeanInitializationException extends FatalBeanException { 35 36 40 public BeanInitializationException(String msg) { 41 super(msg); 42 } 43 44 50 public BeanInitializationException(String msg, Throwable cause) { 51 super(msg, cause); 52 } 53 54 } 55 | Popular Tags |