X-Git-Url: http://wamblee.org/gitweb/?a=blobdiff_plain;f=support%2Fsrc%2Forg%2Fwamblee%2Fgeneral%2FBeanFactoryException.java;h=9f60d21bfc24083838a237d69ab22b780c615978;hb=7095eac4e4419c55bcefb3d1dfd5be6607173bb4;hp=5eb7b48edea40628bcf2552e3951e3c1bce923af;hpb=fb4deb496257c78d4711aab48191dd9a0678798a;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; - } }