Top Description Fields Constructors Methods
jdk.internal.org.xml.sax

public Class SAXNotSupportedException

extends SAXException
Class Inheritance

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.

Author
David Megginson
Since
SAX 2.0
See Also
org.xml.sax.SAXNotRecognizedException

Field Summary

Modifier and TypeField and Description
pack-priv static final long

Constructor Summary

AccessConstructor and Description
public
SAXNotSupportedException()

Construct a new exception with no message.

public
SAXNotSupportedException(String
The text message of the exception.
message
)

Construct a new exception with the given message.

Method Summary

Inherited from jdk.internal.org.xml.sax.SAXException:
getCausegetExceptiongetMessagetoString

Field Detail

serialVersionUIDback to summary
pack-priv static final long serialVersionUID

Hides jdk.internal.org.xml.sax.SAXException.serialVersionUID.

Annotations
@Serial

Constructor Detail

SAXNotSupportedExceptionback to summary
public SAXNotSupportedException()

Construct a new exception with no message.

SAXNotSupportedExceptionback to summary
public SAXNotSupportedException(String message)

Construct a new exception with the given message.

Parameters
message:String

The text message of the exception.