1 28 29 package com.caucho.config; 30 31 34 public class BeanBuilderException extends Exception { 35 38 public BeanBuilderException() 39 { 40 } 41 42 45 public BeanBuilderException(String msg) 46 { 47 super(msg); 48 } 49 50 53 public BeanBuilderException(String msg, Throwable e) 54 { 55 super(msg, e); 56 } 57 58 61 public BeanBuilderException(Throwable e) 62 { 63 super(e); 64 } 65 } 66 | Popular Tags |