1 /*
   2  * Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.  Oracle designates this
   8  * particular file as subject to the "Classpath" exception as provided
   9  * by Oracle in the LICENSE file that accompanied this code.
  10  *
  11  * This code is distributed in the hope that it will be useful, but WITHOUT
  12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14  * version 2 for more details (a copy is included in the LICENSE file that
  15  * accompanied this code).
  16  *
  17  * You should have received a copy of the GNU General Public License version
  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package org.xml.sax;
  27 
  28 /**
  29  * Exception class for an unsupported operation.
  30  *
  31  * <p>An XMLReader will throw this exception when it recognizes a
  32  * feature or property identifier, but cannot perform the requested
  33  * operation (setting a state or value).  Other SAX2 applications and
  34  * extensions may use this class for similar purposes.</p>
  35  *
  36  * @since 1.4, SAX 2.0
  37  * @author David Megginson
  38  * @see org.xml.sax.SAXNotRecognizedException
  39  */
  40 public class SAXNotSupportedException extends SAXException
  41 {
  42 
  43     /**
  44      * Construct a new exception with no message.
  45      */
  46     public SAXNotSupportedException ()
  47     {
  48         super();
  49     }
  50 
  51 
  52     /**
  53      * Construct a new exception with the given message.
  54      *
  55      * @param message The text message of the exception.
  56      */
  57     public SAXNotSupportedException (String message)
  58     {
  59         super(message);
  60     }
  61 
  62     // Added serialVersionUID to preserve binary compatibility
  63     static final long serialVersionUID = -1422818934641823846L;
  64 }
  65 
  66 // end of SAXNotSupportedException.java