src/java.xml/share/classes/org/w3c/dom/ranges/RangeException.java
changeset 47443 711ef438b6ad
parent 47216 71c04702a3d5
equal deleted inserted replaced
47442:560ee83bfce5 47443:711ef438b6ad
    46  * their method descriptions.
    46  * their method descriptions.
    47  * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
    47  * <p>See also the <a href='http://www.w3.org/TR/2000/REC-DOM-Level-2-Traversal-Range-20001113'>Document Object Model (DOM) Level 2 Traversal and Range Specification</a>.
    48  * @since 9, DOM Level 2
    48  * @since 9, DOM Level 2
    49  */
    49  */
    50 public class RangeException extends RuntimeException {
    50 public class RangeException extends RuntimeException {
       
    51     private static final long serialVersionUID = 2427563372446661889L;
       
    52 
    51     public RangeException(short code, String message) {
    53     public RangeException(short code, String message) {
    52        super(message);
    54        super(message);
    53        this.code = code;
    55        this.code = code;
    54     }
    56     }
    55     public short   code;
    57     public short   code;