- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xml.sax.SAXException
-
- org.xml.sax.SAXNotSupportedException
-
- All Implemented Interfaces:
-
Serializable
public class SAXNotSupportedException extends SAXException
不受支持的操作的异常类。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.
当XMLReader识别到一个特征或属性标识符,但是不能执行请求的操作(设置一个状态或值)时,它将抛出该异常。 其他SAX2应用程序和扩展可以使用这个类用于类似的目的。
- 从以下版本开始:
- 1.4,SAX 2.0
- 另请参见:
-
SAXNotRecognizedException
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SAXNotSupportedException()
构造一个没有消息的新异常。SAXNotSupportedException(String message)
使用给定的消息构造一个新的异常。
-
方法摘要
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class org.xml.sax.SAXException
getCause, getException, getMessage, toString
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
-
-
-
构造方法详细信息
-
SAXNotSupportedException
public SAXNotSupportedException()
构造一个没有消息的新异常。
-
SAXNotSupportedException
public SAXNotSupportedException(String message)
使用给定的消息构造一个新的异常。- 参数
-
message
- 异常的短信。
-
-