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