Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / general / BeanFactoryException.java
index d29fc3e22b11c82d2158653886e07f519f2ae45e..22481fa10295381b9ba4e63956cde3c6de773a32 100644 (file)
@@ -17,27 +17,29 @@ package org.wamblee.general;
 
 /**
  * Exception thrown by the BeanFactory if an object could not be found.
- *
+ * 
  * @author Erik Brakkee
  */
 public class BeanFactoryException extends RuntimeException {
-    /**
-     * DOCUMENT ME!
-     */
     static final long serialVersionUID = -1215992188624874902L;
 
-/**
+    /**
      * Constructs the exception.
-     * @param aMsg Message.
+     * 
+     * @param aMsg
+     *            Message.
      */
     public BeanFactoryException(String aMsg) {
         super(aMsg);
     }
 
-/**
+    /**
      * Constructs the exception.
-     * @param aMsg Message.
-     * @param aThrowable Cause of the exception.
+     * 
+     * @param aMsg
+     *            Message.
+     * @param aThrowable
+     *            Cause of the exception.
      */
     public BeanFactoryException(String aMsg, Throwable aThrowable) {
         super(aMsg, aThrowable);