X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fsrc%2Forg%2Fwamblee%2Fgeneral%2FBeanFactoryException.java;h=9f60d21bfc24083838a237d69ab22b780c615978;hb=8f2d78e446f48a1ed156b252998ae17cd6f0ba2b;hp=5eb7b48edea40628bcf2552e3951e3c1bce923af;hpb=caa126385642ffc57478e928ab871bc09c53e993;p=utils diff --git a/support/src/org/wamblee/general/BeanFactoryException.java b/support/src/org/wamblee/general/BeanFactoryException.java index 5eb7b48e..9f60d21b 100644 --- a/support/src/org/wamblee/general/BeanFactoryException.java +++ b/support/src/org/wamblee/general/BeanFactoryException.java @@ -21,15 +21,20 @@ package org.wamblee.general; public class BeanFactoryException extends RuntimeException { static final long serialVersionUID = -1215992188624874902L; + /** + * Constructs the exception. + * @param aMsg Message. + */ public BeanFactoryException(String aMsg) { super(aMsg); } + /** + * Constructs the exception. + * @param aMsg Message. + * @param aThrowable Cause of the exception. + */ public BeanFactoryException(String aMsg, Throwable aThrowable) { super(aMsg, aThrowable); } - - public static T bla(Class ddk) { - return null; - } }