Most visited

Recently visited

Added in API level 1

SAXNotSupportedException

public class SAXNotSupportedException
extends SAXException

java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ org.xml.sax.SAXException
         ↳ org.xml.sax.SAXNotSupportedException


不受支持的操作的异常类。

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应用程序和扩展可能会将此类用于类似目的。

也可以看看:

Summary

Public constructors

SAXNotSupportedException()

构造一个没有消息的新例外。

SAXNotSupportedException(String message)

用给定的消息构造一个新的异常。

Inherited methods

From class org.xml.sax.SAXException
From class java.lang.Throwable
From class java.lang.Object

Public constructors

SAXNotSupportedException

Added in API level 1
SAXNotSupportedException ()

构造一个没有消息的新例外。

SAXNotSupportedException

Added in API level 1
SAXNotSupportedException (String message)

用给定的消息构造一个新的异常。

Parameters
message String: The text message of the exception.

Hooray!