Searched refs:LSException (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxp/src/org/w3c/dom/ls/
H A DLSException.java45 * Parser or write operations may throw an <code>LSException</code> if the
58 public class LSException extends RuntimeException { class in inherits:RuntimeException
59 public LSException(short code, String message) { method in class:LSException
H A DLSSerializer.java412 * @exception LSException
420 throws LSException;
434 * @exception LSException
442 throws LSException;
456 * @exception LSException
463 throws DOMException, LSException;
H A DLSParser.java338 * @exception LSException
345 throws DOMException, LSException;
362 * @exception LSException
369 throws DOMException, LSException;
477 * @exception LSException
486 throws DOMException, LSException;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serialize/
H A DDOMSerializerImpl.java62 import org.w3c.dom.ls.LSException;
472 * @exception LSException
477 public String writeToString(Node wnode) throws DOMException, LSException {
537 throw new LSException(LSException.SERIALIZE_ERR, msg);
539 } catch (LSException lse) {
540 // Rethrow LSException.
547 throw (LSException) new LSException(LSException
[all...]
H A DBaseMarkupSerializer.java71 import org.w3c.dom.ls.LSException;
1544 throw new LSException(LSException.SERIALIZE_ERR, msg);
1550 throw new LSException(LSException.SERIALIZE_ERR, msg);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParserImpl.java66 import org.w3c.dom.ls.LSException;
913 public Document parseURI (String uri) throws LSException {
958 throw (LSException) DOMUtil.createLSException(LSException.PARSE_ERR, e).fillInStackTrace();
971 public Document parse (LSInput is) throws LSException {
1015 throw (LSException) DOMUtil.createLSException(LSException.PARSE_ERR, e).fillInStackTrace();
1050 short action) throws DOMException, LSException {
1100 throw new LSException(LSException
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DDOMUtil.java34 import org.w3c.dom.ls.LSException;
860 * Creates an LSException. On J2SE 1.4 and above the cause for the exception will be set.
862 public static LSException createLSException(short code, Throwable cause) {
863 LSException lse = new LSException(code, cause != null ? cause.getMessage() : null);

Completed in 795 milliseconds