- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xml.sax.SAXException
-
- org.xml.sax.SAXNotRecognizedException
-
- All Implemented Interfaces:
-
Serializable
public class SAXNotRecognizedException 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发现无法识别的功能或属性标识符时,将抛出此异常; SAX应用程序和扩展可以使用这个类用于其他类似的目的。
- 从以下版本开始:
- 1.4,SAX 2.0
- 另请参见:
-
SAXNotSupportedException
, Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 SAXNotRecognizedException()
默认构造函数。SAXNotRecognizedException(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
-
-
-
-
构造方法详细信息
-
SAXNotRecognizedException
public SAXNotRecognizedException()
默认构造函数。
-
SAXNotRecognizedException
public SAXNotRecognizedException(String message)
使用给定的消息构造一个新的异常。- 参数
-
message
- 异常的短信。
-
-