Home | History | Annotate | Download | only in dom

Lines Matching defs:DOMException

23 import org.w3c.dom.DOMException;
54 public Node appendChild(Node newChild) throws DOMException {
120 public String getNodeValue() throws DOMException {
156 public Node insertBefore(Node newChild, Node refChild) throws DOMException {
170 public Node removeChild(Node oldChild) throws DOMException {
175 throw new DOMException(DOMException.NOT_FOUND_ERR, "Child does not exist");
180 public Node replaceChild(Node newChild, Node oldChild) throws DOMException {
185 } catch (DOMException e) {
192 throw new DOMException(DOMException.NOT_FOUND_ERR, "Old child does not exist");
197 public void setNodeValue(String nodeValue) throws DOMException {
201 public void setPrefix(String prefix) throws DOMException {
229 public short compareDocumentPosition(Node other) throws DOMException {
230 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
233 public String getTextContent() throws DOMException {
234 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
237 public void setTextContent(String textContent) throws DOMException {
238 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
242 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
250 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
258 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
267 throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);