You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by rp...@locus.apache.org on 2000/01/05 02:51:42 UTC

cvs commit: xml-xerces/java/src/org/w3c/dom DOMException.java

rpfeiffe    00/01/04 17:51:42

  Modified:    java/src/org/w3c/dom DOMException.java
  Log:
  Match the match the W3C CR from 991210.
  -rip
  
  Revision  Changes    Path
  1.2       +8 -1      xml-xerces/java/src/org/w3c/dom/DOMException.java
  
  Index: DOMException.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/w3c/dom/DOMException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- DOMException.java	1999/11/09 01:11:23	1.1
  +++ DOMException.java	2000/01/05 01:51:42	1.2
  @@ -44,6 +44,13 @@
     public static final short           NOT_FOUND_ERR        = 8;
     public static final short           NOT_SUPPORTED_ERR    = 9;
     public static final short           INUSE_ATTRIBUTE_ERR  = 10;
  -
  +  // Introduced in DOM Level 2:
  +  public static final short           INVALID_STATE_ERR    = 11;
  +  // Introduced in DOM Level 2:
  +  public static final short           SYNTAX_ERR           = 12;
  +  // Introduced in DOM Level 2:
  +  public static final short           INVALID_MODIFICATION_ERR = 13;
  +  // Introduced in DOM Level 2:
  +  public static final short           NAMESPACE_ERR        = 14; 
   }