< prev index next >

src/java.xml/share/classes/org/w3c/dom/events/EventException.java

Print this page

        

@@ -46,10 +46,12 @@
  * their method descriptions.
  * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Events-20001113'>Document Object Model (DOM) Level 2 Events Specification</a>.
  * @since 1.5, DOM Level 2
  */
 public class EventException extends RuntimeException {
+    private static final long serialVersionUID = 242753408332692061L;
+    
     public EventException(short code, String message) {
        super(message);
        this.code = code;
     }
     public short   code;
< prev index next >