Source Home >> Java Source 1.6.0 >> org.xml.sax.SAXNotSupportedException V 0.09
  • 01// SAXNotSupportedException.java - unsupported feature or value.
  • 02// http://www.saxproject.org
  • 03// Written by David Megginson
  • 04// NO WARRANTY! This class is in the Public Domain.
  • 05// $Id: SAXNotSupportedException.java,v 1.4 2004/11/03 22:55:32 jsuttor Exp $
  • 06
  • 07package org.xml.sax;
  • 08
  • 09/**
  • 10 * Exception class for an unsupported operation.
  • 11 *
  • 12 * <blockquote>
  • 13 * <em>This module, both source code and documentation, is in the
  • 14 * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
  • 15 * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
  • 16 * for further information.
  • 17 * </blockquote>
  • 18 *
  • 19 * <p>An XMLReader will throw this exception when it recognizes a
  • 20 * feature or property identifier, but cannot perform the requested
  • 21 * operation (setting a state or value). Other SAX2 applications and
  • 22 * extensions may use this class for similar purposes.</p>
  • 23 *
  • 24 * @since SAX 2.0
  • 25 * @author David Megginson
  • 26 * @version 2.0.1 (sax2r2)
  • 27 * @see org.xml.sax.SAXNotRecognizedException
  • 28 */
  • 29public class SAXNotSupportedException extends SAXException
  • 30{
  • 31
  • 32 /**
  • 33 * Construct a new exception with no message.
  • 34 */
  • 35 public SAXNotSupportedException ()
  • 36 {
  • 37 super();
  • 38 }
  • 39
  • 40
  • 41 /**
  • 42 * Construct a new exception with the given message.
  • 43 *
  • 44 * @param message The text message of the exception.
  • 45 */
  • 46 public SAXNotSupportedException (String message)
  • 47 {
  • 48 super(message);
  • 49 }
  • 50
  • 51 // Added serialVersionUID to preserve binary compatibility
  • 52 static final long serialVersionUID = -1422818934641823846L;
  • 53}
  • 54
  • 55// end of SAXNotSupportedException.java

文件:SAXNotSupportedException.java
包名:org.xml.sax
类名:SAXNotSupportedException
继承:SAXException
接口: