A massive organize imports and formatting of the sources using default Eclipse code...
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / jdom / DOMException.java
index 79b002a..815016e 100644 (file)
 package net.sourceforge.phpdt.core.jdom;
 
 /**
- * Unchecked exception thrown when an illegal manipulation of the JDOM is 
- * performed, or when an attempt is made to access/set an attribute of a
- * JDOM node that source indexes cannot be determined for (in case the source
- * was syntactically incorrect).
+ * Unchecked exception thrown when an illegal manipulation of the JDOM is
+ * performed, or when an attempt is made to access/set an attribute of a JDOM
+ * node that source indexes cannot be determined for (in case the source was
+ * syntactically incorrect).
  */
 public class DOMException extends RuntimeException {
-/**
- * Creates a new exception with no detail message.
- */
-public DOMException() {}
-/**
- * Creates a new exception with the given detail message.
- *
- * @param message the detail message
- */
-public DOMException(String message) {
-       super(message);
-}
+       /**
+        * Creates a new exception with no detail message.
+        */
+       public DOMException() {
+       }
+
+       /**
+        * Creates a new exception with the given detail message.
+        * 
+        * @param message
+        *            the detail message
+        */
+       public DOMException(String message) {
+               super(message);
+       }
 }