Removed DOCUMENT ME comments that were generated and applied source code
[utils] / system / general / src / main / java / org / wamblee / system / core / SystemAssemblyException.java
index 64f35e54ff753a58bab750c8a21a2409ee2c6d81..c0277dbd3a70e8dc9627829552aab80caea09754 100644 (file)
@@ -17,23 +17,28 @@ package org.wamblee.system.core;
 
 /**
  * Exception thrown when an error occurs in assembling the systems.
- *
+ * 
  * @author Erik Brakkee
  */
 public class SystemAssemblyException extends RuntimeException {
-/**
-         * Constructs the exception. 
-         * @param aMsg Message. 
-         */
+    /**
+     * Constructs the exception.
+     * 
+     * @param aMsg
+     *            Message.
+     */
     public SystemAssemblyException(String aMsg) {
         super(aMsg);
     }
 
-/**
-         * Constructs the exception. 
-         * @param aMsg Message
-         * @param aCause Cause. 
-         */
+    /**
+     * Constructs the exception.
+     * 
+     * @param aMsg
+     *            Message
+     * @param aCause
+     *            Cause.
+     */
     public SystemAssemblyException(String aMsg, Throwable aCause) {
         super(aMsg, aCause);
     }