(no commit message)
[utils] / support / src / org / wamblee / general / BeanFactoryException.java
index 5eb7b48edea40628bcf2552e3951e3c1bce923af..9f60d21bfc24083838a237d69ab22b780c615978 100644 (file)
@@ -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 extends Object> T bla(Class<T> ddk) {
-        return null; 
-    }
 }