Removed DOCUMENT ME comments that were generated and applied source code
[utils] / support / general / src / main / java / org / wamblee / xml / XMLException.java
index 4b40c5712f1c45f88db241d58079ef0b8bd84af8..b5b5dd3a27e054fbce650792ee26a8aa6bbae7ea 100644 (file)
@@ -17,24 +17,21 @@ package org.wamblee.xml;
 
 /**
  * Exception thrown in case of XML parsing problems.
- *
+ * 
  * @author Erik Brakkee
  */
 public class XMLException extends Exception {
-/**
+    /**
      * Creates a new XMLException object.
-     *
-     * @param aMsg DOCUMENT ME!
+     * 
      */
     public XMLException(String aMsg) {
         super(aMsg);
     }
 
-/**
+    /**
      * Creates a new XMLException object.
-     *
-     * @param aMsg DOCUMENT ME!
-     * @param aCause DOCUMENT ME!
+     * 
      */
     public XMLException(String aMsg, Throwable aCause) {
         super(aMsg, aCause);