1/*
2 * Copyright (c) 2004 World Wide Web Consortium,
3 *
4 * (Massachusetts Institute of Technology, European Research Consortium for
5 * Informatics and Mathematics, Keio University). All Rights Reserved. This
6 * work is distributed under the W3C(r) Software License [1] in the hope that
7 * it will be useful, but WITHOUT ANY WARRANTY; without even the implied
8 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9 *
10 * [1] http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
11 */
12
13package org.w3c.dom.ls;
14
15/**
16 *  Parser or write operations may throw an <code>LSException</code> if the
17 * processing is stopped. The processing can be stopped due to a
18 * <code>DOMError</code> with a severity of
19 * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered
20 * <code>DOMError.SEVERITY_ERROR</code>, or if
21 * <code>DOMErrorHandler.handleError()</code> returned <code>false</code>.
22 * <p ><b>Note:</b>  As suggested in the definition of the constants in the
23 * <code>DOMError</code> interface, a DOM implementation may choose to
24 * continue after a fatal error, but the resulting DOM tree is then
25 * implementation dependent.
26 * <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
27and Save Specification</a>.
28 */
29public class LSException extends RuntimeException {
30    public LSException(short code, String message) {
31       super(message);
32       this.code = code;
33    }
34    public short   code;
35    // LSExceptionCode
36    /**
37     *  If an attempt was made to load a document, or an XML Fragment, using
38     * <code>LSParser</code> and the processing has been stopped.
39     */
40    public static final short PARSE_ERR                 = 81;
41    /**
42     *  If an attempt was made to serialize a <code>Node</code> using
43     * <code>LSSerializer</code> and the processing has been stopped.
44     */
45    public static final short SERIALIZE_ERR             = 82;
46
47}
48