~ubuntu-branches/ubuntu/karmic/libxerces2-java/karmic

« back to all changes in this revision

Viewing changes to src/org/w3c/dom/ls/LSException.java

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Gybas
  • Date: 2004-06-06 18:00:26 UTC
  • Revision ID: james.westby@ubuntu.com-20040606180026-a3vh56uc95hjbyfh
Tags: upstream-2.6.2
ImportĀ upstreamĀ versionĀ 2.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
13
package 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
 */
 
27
public class LSException extends RuntimeException {
 
28
    public LSException(short code, String message) {
 
29
       super(message);
 
30
       this.code = code;
 
31
    }
 
32
    public short   code;
 
33
    // LSExceptionCode
 
34
    /**
 
35
     *  If an attempt was made to load a document, or an XML Fragment, using 
 
36
     * <code>LSParser</code> and the processing has been stopped. 
 
37
     */
 
38
    public static final short PARSE_ERR                 = 81;
 
39
    /**
 
40
     *  If an attempt was made to serialize a <code>Node</code> using 
 
41
     * <code>LSSerializer</code> and the processing has been stopped. 
 
42
     */
 
43
    public static final short SERIALIZE_ERR             = 82;
 
44
 
 
45
}