SAXNotRecognizedException.java revision 286
286N/A/*
286N/A * Copyright (c) 2000, 2005, Oracle and/or its affiliates. All rights reserved.
286N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
286N/A *
286N/A * This code is free software; you can redistribute it and/or modify it
286N/A * under the terms of the GNU General Public License version 2 only, as
286N/A * published by the Free Software Foundation. Oracle designates this
286N/A * particular file as subject to the "Classpath" exception as provided
286N/A * by Oracle in the LICENSE file that accompanied this code.
286N/A *
286N/A * This code is distributed in the hope that it will be useful, but WITHOUT
286N/A * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
286N/A * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
286N/A * version 2 for more details (a copy is included in the LICENSE file that
286N/A * accompanied this code).
286N/A *
286N/A * You should have received a copy of the GNU General Public License version
286N/A * 2 along with this work; if not, write to the Free Software Foundation,
286N/A * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
286N/A *
286N/A * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
286N/A * or visit www.oracle.com if you need additional information or have any
286N/A * questions.
286N/A */
286N/A
286N/A// SAXNotRecognizedException.java - unrecognized feature or value.
286N/A// http://www.saxproject.org
286N/A// Written by David Megginson
286N/A// NO WARRANTY! This class is in the Public Domain.
286N/A// $Id: SAXNotRecognizedException.java,v 1.3 2004/11/03 22:55:32 jsuttor Exp $
286N/A
286N/Apackage org.xml.sax;
286N/A
286N/A
286N/A/**
286N/A * Exception class for an unrecognized identifier.
286N/A *
286N/A * <blockquote>
286N/A * <em>This module, both source code and documentation, is in the
286N/A * Public Domain, and comes with <strong>NO WARRANTY</strong>.</em>
286N/A * See <a href='http://www.saxproject.org'>http://www.saxproject.org</a>
286N/A * for further information.
286N/A * </blockquote>
286N/A *
286N/A * <p>An XMLReader will throw this exception when it finds an
286N/A * unrecognized feature or property identifier; SAX applications and
286N/A * extensions may use this class for other, similar purposes.</p>
286N/A *
286N/A * @since SAX 2.0
286N/A * @author David Megginson
286N/A * @see org.xml.sax.SAXNotSupportedException
286N/A */
286N/Apublic class SAXNotRecognizedException extends SAXException
286N/A{
286N/A
286N/A /**
286N/A * Default constructor.
286N/A */
286N/A public SAXNotRecognizedException ()
286N/A {
286N/A super();
286N/A }
286N/A
286N/A
286N/A /**
286N/A * Construct a new exception with the given message.
286N/A *
286N/A * @param message The text message of the exception.
286N/A */
286N/A public SAXNotRecognizedException (String message)
286N/A {
286N/A super(message);
286N/A }
286N/A
286N/A // Added serialVersionUID to preserve binary compatibility
286N/A static final long serialVersionUID = 5440506620509557213L;
286N/A}
286N/A
286N/A// end of SAXNotRecognizedException.java