1 8 14 package jfun.yan; 15 16 25 public class ComponentInstantiationException extends YanException { 26 public ComponentInstantiationException(String msg) { 27 super(msg); 28 } 29 public ComponentInstantiationException(String msg, Throwable cause) { 30 super(msg, cause); 31 32 } 33 public ComponentInstantiationException(Throwable cause) { 34 super(cause); 35 } 36 } 37 | Popular Tags |