001 /*
002 * Copyright (c) 2004 World Wide Web Consortium,
003 *
004 * (Massachusetts Institute of Technology, European Research Consortium for
005 * Informatics and Mathematics, Keio University). All Rights Reserved. This
006 * work is distributed under the W3C(r) Software License [1] in the hope that
007 * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
008 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
009 *
010 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
011 */
012
013 package org.w3c.dom.ls;
014
015 /**
016 * Parser or write operations may throw an <code>LSException</code> if the
017 * processing is stopped. The processing can be stopped due to a
018 * <code>DOMError</code> with a severity of
019 * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered
020 * <code>DOMError.SEVERITY_ERROR</code>, or if
021 * <code>DOMErrorHandler.handleError()</code> returned <code>false</code>.
022 * <p ><b>Note:</b> As suggested in the definition of the constants in the
023 * <code>DOMError</code> interface, a DOM implementation may choose to
024 * continue after a fatal error, but the resulting DOM tree is then
025 * implementation dependent.
026 * <p>See also the <a href='http://www.w3.org/TR/2004/REC-DOM-Level-3-LS-20040407'>Document Object Model (DOM) Level 3 Load
027 and Save Specification</a>.
028 */
029 public class LSException extends RuntimeException {
030 public LSException(short code, String message) {
031 super(message);
032 this.code = code;
033 }
034 public short code;
035 // LSExceptionCode
036 /**
037 * If an attempt was made to load a document, or an XML Fragment, using
038 * <code>LSParser</code> and the processing has been stopped.
039 */
040 public static final short PARSE_ERR = 81;
041 /**
042 * If an attempt was made to serialize a <code>Node</code> using
043 * <code>LSSerializer</code> and the processing has been stopped.
044 */
045 public static final short SERIALIZE_ERR = 82;
046
047 }