java.lang.Object |
↳ |
java.lang.Throwable |
|
↳ |
java.lang.Exception |
|
|
↳ |
org.xml.sax.SAXException |
|
|
|
↳ |
org.xml.sax.SAXNotRecognizedException |
Class Overview
Exception class for an unrecognized identifier.
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 finds an
unrecognized feature or property identifier; SAX applications and
extensions may use this class for other, similar purposes.
Summary
[Expand]
Inherited Methods |
From class
org.xml.sax.SAXException
Throwable
|
getCause()
Return the cause of the exception
|
Exception
|
getException()
Return the embedded exception, if any.
|
String
|
getMessage()
Return a detail message for this exception.
|
String
|
toString()
Override toString to pick up any embedded exception.
|
|
From class
java.lang.Throwable
synchronized
Throwable
|
fillInStackTrace()
|
Throwable
|
getCause()
|
String
|
getLocalizedMessage()
|
String
|
getMessage()
|
StackTraceElement[]
|
getStackTrace()
|
synchronized
Throwable
|
initCause(Throwable arg0)
|
void
|
printStackTrace(PrintWriter arg0)
|
void
|
printStackTrace(PrintStream arg0)
|
void
|
printStackTrace()
|
void
|
setStackTrace(StackTraceElement[] arg0)
|
String
|
toString()
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
|
Public Constructors
public
SAXNotRecognizedException
()
public
SAXNotRecognizedException
(String message)
Construct a new exception with the given message.
Parameters
message
| The text message of the exception.
|