Skip to content
Snippets Groups Projects
Commit 720e37be authored by Tinny Ng's avatar Tinny Ng
Browse files

DOM L3: Add DOMException::VALIDATION_ERR

git-svn-id: https://svn.apache.org/repos/asf/xerces/c/trunk@173994 13f79535-47bb-0310-9956-ffa450edef68
parent 311058e6
No related branches found
No related tags found
No related merge requests found
......@@ -194,6 +194,15 @@ public:
*
* The above are since DOM Level 2
* @since DOM Level 2
*
* <p><code>VALIDATION_ERR:</code>
* 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.
*
* The above is since DOM Level 2
* @since DOM Level 3
*/
enum ExceptionCode {
INDEX_SIZE_ERR = 1,
......@@ -210,7 +219,8 @@ public:
SYNTAX_ERR = 12,
INVALID_MODIFICATION_ERR = 13,
NAMESPACE_ERR = 14,
INVALID_ACCESS_ERR = 15
INVALID_ACCESS_ERR = 15,
VALIDATION_ERR = 16
};
//@}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment