Example usage for org.w3c.dom DOMException DOMException

List of usage examples for org.w3c.dom DOMException DOMException

Introduction

In this page you can find the example usage for org.w3c.dom DOMException DOMException.

Prototype

public DOMException(short code, String message) 

Source Link

Usage

From source file:com.marklogic.dom.AttributeNodeMapImpl.java

/** Unsupported. */
public Node removeNamedItem(String name) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.AttributeNodeMapImpl.java

/** Unsupported. */
public Node removeNamedItemNS(String namespaceURI, String localName) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.AttributeNodeMapImpl.java

/** Unsupported. */
public Node setNamedItem(Node arg) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.AttributeNodeMapImpl.java

/** Unsupported. */
public Node setNamedItemNS(Node arg) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Node adoptNode(Node arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Attr createAttribute(String arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Attr createAttributeNS(String arg0, String arg1) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public CDATASection createCDATASection(String arg0) throws DOMException {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.DocumentImpl.java

/** Unsupported. */
public Comment createComment(String arg0) {
    throw new DOMException(DOMException.NO_MODIFICATION_ALLOWED_ERR, null);
}

From source file:com.marklogic.dom.NodeImpl.java

/** Unsupported. */
public Object getUserData(String key) {
    throw new DOMException(DOMException.NOT_SUPPORTED_ERR, null);
}