Java org.xml.sax SAXException fields, constructors, methods, implement or subclass

Example usage for Java org.xml.sax SAXException fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.xml.sax SAXException.

The text is from its open source code.

Constructor

SAXException(String message)
Create a new SAXException.
SAXException(Exception e)
Create a new SAXException wrapping an existing exception.
SAXException(String message, Exception e)
Create a new SAXException from an existing exception.

Method

ThrowablegetCause()
Return the cause of the exception
ClassgetClass()
Returns the runtime class of this Object .
ExceptiongetException()
Return the embedded exception, if any.
StringgetLocalizedMessage()
Creates a localized description of this throwable.
StringgetMessage()
Return a detail message for this exception.
StackTraceElement[]getStackTrace()
Provides programmatic access to the stack trace information printed by #printStackTrace() .
ThrowableinitCause(Throwable cause)
Initializes the cause of this throwable to the specified value.
voidprintStackTrace(PrintStream s)
Prints this throwable and its backtrace to the specified print stream.
voidprintStackTrace()
Prints this throwable and its backtrace to the standard error stream.
StringtoString()
Override toString to pick up any embedded exception.