Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 package com.icl.saxon.tree; 2 import org.w3c.dom.*; 3 4 16 public class DOMExceptionImpl extends DOMException { 17 18 public DOMExceptionImpl (short code, String message) { 19 super(code, message); 20 } 22 public short code; 23 public static final short INDEX_SIZE_ERR = 1; 25 public static final short DOMSTRING_SIZE_ERR = 2; 26 public static final short HIERARCHY_REQUEST_ERR = 3; 27 public static final short WRONG_DOCUMENT_ERR = 4; 28 public static final short INVALID_CHARACTER_ERR = 5; 29 public static final short NO_DATA_ALLOWED_ERR = 6; 30 public static final short NO_MODIFICATION_ALLOWED_ERR = 7; 31 public static final short NOT_FOUND_ERR = 8; 32 public static final short NOT_SUPPORTED_ERR = 9; 33 public static final short INUSE_ATTRIBUTE_ERR = 10; 34 37 public static final short INVALID_STATE_ERR = 11; 38 41 public static final short SYNTAX_ERR = 12; 42 45 public static final short INVALID_MODIFICATION_ERR = 13; 46 49 public static final short NAMESPACE_ERR = 14; 50 53 public static final short INVALID_ACCESS_ERR = 15; 54 55 } 56 57
| Popular Tags
|