org.xml.sax
Class SAXNotSupportedException

java.lang.Object sample code for java.lang.Object definition code for java.lang.Object 
  extended by java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable 
      extended by java.lang.Exception sample code for java.lang.Exception definition code for java.lang.Exception 
          extended by org.xml.sax.SAXException sample code for org.xml.sax.SAXException definition code for org.xml.sax.SAXException 
              extended by org.xml.sax.SAXNotSupportedException
All Implemented Interfaces:
Serializable sample code for java.io.Serializable definition code for java.io.Serializable

public class SAXNotSupportedException
extends SAXException sample code for org.xml.sax.SAXException definition code for org.xml.sax.SAXException

Exception class for an unsupported operation.

This module, both source code and documentation, is in the Public Domain, and comes with NO WARRANTY. See http://www.saxproject.org for further information.

An XMLReader will throw this exception when it recognizes a feature or property identifier, but cannot perform the requested operation (setting a state or value). Other SAX2 applications and extensions may use this class for similar purposes.

Since:
SAX 2.0
See Also:
SAXNotRecognizedException sample code for org.xml.sax.SAXNotRecognizedException definition code for org.xml.sax.SAXNotRecognizedException , Serialized Form

Constructor Summary
SAXNotSupportedException sample code for org.xml.sax.SAXNotSupportedException.SAXNotSupportedException() definition code for org.xml.sax.SAXNotSupportedException.SAXNotSupportedException() ()
          Construct a new exception with no message.
SAXNotSupportedException sample code for org.xml.sax.SAXNotSupportedException.SAXNotSupportedException(java.lang.String) definition code for org.xml.sax.SAXNotSupportedException.SAXNotSupportedException(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  message)
          Construct a new exception with the given message.
 
Method Summary
 
Methods inherited from class org.xml.sax.SAXException sample code for org.xml.sax.SAXException definition code for org.xml.sax.SAXException
getException sample code for org.xml.sax.SAXException.getException() definition code for org.xml.sax.SAXException.getException() , getMessage sample code for org.xml.sax.SAXException.getMessage() definition code for org.xml.sax.SAXException.getMessage() , toString sample code for org.xml.sax.SAXException.toString() definition code for org.xml.sax.SAXException.toString()
 
Methods inherited from class java.lang.Throwable sample code for java.lang.Throwable definition code for java.lang.Throwable
fillInStackTrace sample code for java.lang.Throwable.fillInStackTrace() definition code for java.lang.Throwable.fillInStackTrace() , getCause sample code for java.lang.Throwable.getCause() definition code for java.lang.Throwable.getCause() , getLocalizedMessage sample code for java.lang.Throwable.getLocalizedMessage() definition code for java.lang.Throwable.getLocalizedMessage() , getStackTrace sample code for java.lang.Throwable.getStackTrace() definition code for java.lang.Throwable.getStackTrace() , initCause sample code for java.lang.Throwable.initCause(java.lang.Throwable) definition code for java.lang.Throwable.initCause(java.lang.Throwable) , printStackTrace sample code for java.lang.Throwable.printStackTrace() definition code for java.lang.Throwable.printStackTrace() , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintStream) definition code for java.lang.Throwable.printStackTrace(java.io.PrintStream) , printStackTrace sample code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) definition code for java.lang.Throwable.printStackTrace(java.io.PrintWriter) , setStackTrace sample code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[]) definition code for java.lang.Throwable.setStackTrace(java.lang.StackTraceElement[])
 
Methods inherited from class java.lang.Object sample code for java.lang.Object definition code for java.lang.Object
clone sample code for java.lang.Object.clone() definition code for java.lang.Object.clone() , equals sample code for java.lang.Object.equals(java.lang.Object) definition code for java.lang.Object.equals(java.lang.Object) , finalize sample code for java.lang.Object.finalize() definition code for java.lang.Object.finalize() , getClass sample code for java.lang.Object.getClass() definition code for java.lang.Object.getClass() , hashCode sample code for java.lang.Object.hashCode() definition code for java.lang.Object.hashCode() , notify sample code for java.lang.Object.notify() definition code for java.lang.Object.notify() , notifyAll sample code for java.lang.Object.notifyAll() definition code for java.lang.Object.notifyAll() , wait sample code for java.lang.Object.wait() definition code for java.lang.Object.wait() , wait sample code for java.lang.Object.wait(long) definition code for java.lang.Object.wait(long) , wait sample code for java.lang.Object.wait(long, int) definition code for java.lang.Object.wait(long, int)
 

Constructor Detail

SAXNotSupportedException sample code for org.xml.sax.SAXNotSupportedException() definition code for org.xml.sax.SAXNotSupportedException()

public SAXNotSupportedException()
Construct a new exception with no message.


SAXNotSupportedException sample code for org.xml.sax.SAXNotSupportedException(java.lang.String) definition code for org.xml.sax.SAXNotSupportedException(java.lang.String)

public SAXNotSupportedException(String sample code for java.lang.String definition code for java.lang.String  message)
Construct a new exception with the given message.

Parameters:
message - The text message of the exception.