X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/DOMException.java b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/DOMException.java index 79b002a..94f9be3 100644 --- a/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/DOMException.java +++ b/net.sourceforge.phpeclipse/src/net/sourceforge/phpdt/core/jdom/DOMException.java @@ -11,22 +11,30 @@ 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); -} + /** + * + */ + private static final long serialVersionUID = 1030600968503019789L; + + /** + * 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); + } }