Index: org/w3c/dom/DOMException.java =================================================================== RCS file: /cvsroot/classpath/classpath/external/w3c_dom/org/w3c/dom/DOMException.java,v retrieving revision 1.1 diff -u -r1.1 DOMException.java --- org/w3c/dom/DOMException.java 23 Dec 2004 22:38:42 -0000 1.1 +++ org/w3c/dom/DOMException.java 25 Sep 2005 23:45:08 -0000 @@ -31,6 +31,8 @@ *

See also the Document Object Model (DOM) Level 3 Core Specification. */ public class DOMException extends RuntimeException { + private static final long serialVersionUID = 6627732366795969916L; + public DOMException(short code, String message) { super(message); this.code = code;