jdk/src/share/classes/javax/imageio/metadata/IIOMetadataNode.java
changeset 22657 654c573cb341
parent 14342 8435a30053c1
child 23306 679ac7841e8d
equal deleted inserted replaced
22656:b8ee81ac6fb3 22657:654c573cb341
     1 /*
     1 /*
     2  * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
    39 import org.w3c.dom.TypeInfo;
    39 import org.w3c.dom.TypeInfo;
    40 import org.w3c.dom.UserDataHandler;
    40 import org.w3c.dom.UserDataHandler;
    41 
    41 
    42 
    42 
    43 class IIODOMException extends DOMException {
    43 class IIODOMException extends DOMException {
       
    44     private static final long serialVersionUID = -4369510142067447468L;
    44 
    45 
    45     public IIODOMException(short code, String message) {
    46     public IIODOMException(short code, String message) {
    46         super(code, message);
    47         super(code, message);
    47     }
    48     }
    48 }
    49 }