1 28 29 package com.caucho.config; 30 31 import com.caucho.util.CompileException; 32 33 37 public class BeanConfigException extends Exception implements CompileException 38 { 39 42 public BeanConfigException() 43 { 44 } 45 46 49 public BeanConfigException(String msg) 50 { 51 super(msg); 52 } 53 54 57 public BeanConfigException(String msg, Throwable e) 58 { 59 super(msg, e); 60 } 61 62 65 public BeanConfigException(Throwable e) 66 { 67 super(e); 68 } 69 } 70 | Popular Tags |