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. package org.w3c.dom.ls;
  13. /**
  14. * Parser or write operations may throw an <code>LSException</code> if the
  15. * processing is stopped. The processing can be stopped due to a
  16. * <code>DOMError</code> with a severity of
  17. * <code>DOMError.SEVERITY_FATAL_ERROR</code> or a non recovered
  18. * <code>DOMError.SEVERITY_ERROR</code>, or if
  19. * <code>DOMErrorHandler.handleError()</code> returned <code>false</code>.
  20. * <p ><b>Note:</b> As suggested in the definition of the constants in the
  21. * <code>DOMError</code> interface, a DOM implementation may choose to
  22. * continue after a fatal error, but the resulting DOM tree is then
  23. * implementation dependent.
  24. * <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
  25. and Save Specification</a>.
  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. }