Home | History | Annotate | Download | only in dom

Lines Matching defs:DOMException

24 import org.w3c.dom.DOMException;
315 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,
335 public void setParameter(String name, Object value) throws DOMException {
338 throw new DOMException(DOMException.NOT_FOUND_ERR, "No such parameter: " + name);
343 throw new DOMException(DOMException.TYPE_MISMATCH_ERR,
346 throw new DOMException(DOMException.TYPE_MISMATCH_ERR,
351 public Object getParameter(String name) throws DOMException {
354 throw new DOMException(DOMException.NOT_FOUND_ERR, "No such parameter: " + name);
454 throw new DOMException(DOMException.NOT_SUPPORTED_ERR,