1. /*
  2. * Copyright (c) 2004 World Wide Web Consortium,
  3. *
  4. * (Massachusetts Institute of Technology, European Research Consortium for
  5. * Informatics and Mathematics, Keio University). All Rights Reserved. This
  6. * work is distributed under the W3C(r) Software License [1] in the hope that
  7. * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
  8. * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. *
  10. * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
  11. */
  12. package org.w3c.dom;
  13. /**
  14. * DOM operations only raise exceptions in "exceptional" circumstances, i.e.,
  15. * when an operation is impossible to perform (either for logical reasons,
  16. * because data is lost, or because the implementation has become unstable).
  17. * In general, DOM methods return specific error values in ordinary
  18. * processing situations, such as out-of-bound errors when using
  19. * <code>NodeList</code>.
  20. * <p>Implementations should raise other exceptions under other circumstances.
  21. * For example, implementations should raise an implementation-dependent
  22. * exception if a <code>null</code> argument is passed when <code>null</code>
  23. * was not expected.
  24. * <p>Some languages and object systems do not support the concept of
  25. * exceptions. For such systems, error conditions may be indicated using
  26. * native error reporting mechanisms. For some bindings, for example,
  27. * methods may return error codes similar to those listed in the
  28. * corresponding method descriptions.
  29. * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407'>Document Object Model (DOM) Level 3 Core Specification</a>.
  30. */
  31. public class DOMException extends RuntimeException {
  32. public DOMException(short code, String message) {
  33. super(message);
  34. this.code = code;
  35. }
  36. public short code;
  37. // ExceptionCode
  38. /**
  39. * If index or size is negative, or greater than the allowed value.
  40. */
  41. public static final short INDEX_SIZE_ERR = 1;
  42. /**
  43. * If the specified range of text does not fit into a
  44. * <code>DOMString</code>.
  45. */
  46. public static final short DOMSTRING_SIZE_ERR = 2;
  47. /**
  48. * If any <code>Node</code> is inserted somewhere it doesn't belong.
  49. */
  50. public static final short HIERARCHY_REQUEST_ERR = 3;
  51. /**
  52. * If a <code>Node</code> is used in a different document than the one
  53. * that created it (that doesn't support it).
  54. */
  55. public static final short WRONG_DOCUMENT_ERR = 4;
  56. /**
  57. * If an invalid or illegal character is specified, such as in an XML name.
  58. */
  59. public static final short INVALID_CHARACTER_ERR = 5;
  60. /**
  61. * If data is specified for a <code>Node</code> which does not support
  62. * data.
  63. */
  64. public static final short NO_DATA_ALLOWED_ERR = 6;
  65. /**
  66. * If an attempt is made to modify an object where modifications are not
  67. * allowed.
  68. */
  69. public static final short NO_MODIFICATION_ALLOWED_ERR = 7;
  70. /**
  71. * If an attempt is made to reference a <code>Node</code> in a context
  72. * where it does not exist.
  73. */
  74. public static final short NOT_FOUND_ERR = 8;
  75. /**
  76. * If the implementation does not support the requested type of object or
  77. * operation.
  78. */
  79. public static final short NOT_SUPPORTED_ERR = 9;
  80. /**
  81. * If an attempt is made to add an attribute that is already in use
  82. * elsewhere.
  83. */
  84. public static final short INUSE_ATTRIBUTE_ERR = 10;
  85. /**
  86. * If an attempt is made to use an object that is not, or is no longer,
  87. * usable.
  88. * @since DOM Level 2
  89. */
  90. public static final short INVALID_STATE_ERR = 11;
  91. /**
  92. * If an invalid or illegal string is specified.
  93. * @since DOM Level 2
  94. */
  95. public static final short SYNTAX_ERR = 12;
  96. /**
  97. * If an attempt is made to modify the type of the underlying object.
  98. * @since DOM Level 2
  99. */
  100. public static final short INVALID_MODIFICATION_ERR = 13;
  101. /**
  102. * If an attempt is made to create or change an object in a way which is
  103. * incorrect with regard to namespaces.
  104. * @since DOM Level 2
  105. */
  106. public static final short NAMESPACE_ERR = 14;
  107. /**
  108. * If a parameter or an operation is not supported by the underlying
  109. * object.
  110. * @since DOM Level 2
  111. */
  112. public static final short INVALID_ACCESS_ERR = 15;
  113. /**
  114. * If a call to a method such as <code>insertBefore</code> or
  115. * <code>removeChild</code> would make the <code>Node</code> invalid
  116. * with respect to "partial validity", this exception would be raised
  117. * 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>]
  118. * . Refer to this specification for further information.
  119. * @since DOM Level 3
  120. */
  121. public static final short VALIDATION_ERR = 16;
  122. /**
  123. * If the type of an object is incompatible with the expected type of the
  124. * parameter associated to the object.
  125. * @since DOM Level 3
  126. */
  127. public static final short TYPE_MISMATCH_ERR = 17;
  128. // Added serialVersionUID to preserve binary compatibility
  129. static final long serialVersionUID = 6627732366795969916L;
  130. }