src/org/w3c/dom/DOMException.java

Print this page
rev 602 : 8047723: @since tag cleanup in jaxp
Reviewed-by:

@@ -114,48 +114,48 @@
      */
     public static final short INUSE_ATTRIBUTE_ERR       = 10;
     /**
      * If an attempt is made to use an object that is not, or is no longer,
      * usable.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public static final short INVALID_STATE_ERR         = 11;
     /**
      * If an invalid or illegal string is specified.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public static final short SYNTAX_ERR                = 12;
     /**
      * If an attempt is made to modify the type of the underlying object.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public static final short INVALID_MODIFICATION_ERR  = 13;
     /**
      * If an attempt is made to create or change an object in a way which is
      * incorrect with regard to namespaces.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public static final short NAMESPACE_ERR             = 14;
     /**
      * If a parameter or an operation is not supported by the underlying
      * object.
-     * @since DOM Level 2
+     * @since 1.4, DOM Level 2
      */
     public static final short INVALID_ACCESS_ERR        = 15;
     /**
      * If a call to a method such as <code>insertBefore</code> or
      * <code>removeChild</code> would make the <code>Node</code> invalid
      * with respect to "partial validity", this exception would be raised
      * and the operation would not be done. This code is used in [<a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Val-20040127/'>DOM Level 3 Validation</a>]
      * . Refer to this specification for further information.
-     * @since DOM Level 3
+     * @since 1.5, DOM Level 3
      */
     public static final short VALIDATION_ERR            = 16;
     /**
      *  If the type of an object is incompatible with the expected type of the
      * parameter associated to the object.
-     * @since DOM Level 3
+     * @since 1.5, DOM Level 3
      */
     public static final short TYPE_MISMATCH_ERR         = 17;
 
     // Added serialVersionUID to preserve binary compatibility
     static final long serialVersionUID = 6627732366795969916L;