View Javadoc

1   // SAXNotRecognizedException.java - unrecognized feature or value.
2   // http://www.saxproject.org
3   // Written by David Megginson
4   // NO WARRANTY!  This class is in the Public Domain.
5   
6   // $Id$
7   
8   
9   package org.xml.sax;
10  
11  
12  /***
13   * Exception class for an unrecognized identifier.
14   *
15   * <blockquote>
16   * <em>This module, both source code and documentation, is in the
17   * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
18   * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
19   * for further information.
20   * </blockquote>
21   *
22   * <p>An XMLReader will throw this exception when it finds an
23   * unrecognized feature or property identifier; SAX applications and
24   * extensions may use this class for other, similar purposes.</p>
25   *
26   * @since SAX 2.0
27   * @author David Megginson
28   * @version 2.0.1 (sax2r2)
29   * @see org.xml.sax.SAXNotSupportedException
30   */
31  public class SAXNotRecognizedException extends SAXException
32  {
33  
34      /***
35       * Construct a new exception with the given message.
36       *
37       * @param message The text message of the exception.
38       */
39      public SAXNotRecognizedException (String message)
40      {
41  		super(message);
42      }
43  
44  }
45  
46  // end of SAXNotRecognizedException.java