Java javax.xml.bind JAXBException fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.bind JAXBException fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.xml.bind JAXBException.

The text is from its open source code.

Constructor

JAXBException(String message)
Construct a JAXBException with the specified detail message.
JAXBException(Throwable exception)
Construct a JAXBException with a linkedException.
JAXBException(String message, String errorCode)
Construct a JAXBException with the specified detail message and vendor specific errorCode.
JAXBException(String message, Throwable exception)
Construct a JAXBException with the specified detail message and linkedException.

Method

ThrowablegetCause()
ClassgetClass()
Returns the runtime class of this Object .
StringgetErrorCode()
Get the vendor specific error code
ThrowablegetLinkedException()
Get the linked exception
StringgetLocalizedMessage()
Creates a localized description of this throwable.
StringgetMessage()
Returns the detail message string of this throwable.
StackTraceElement[]getStackTrace()
Provides programmatic access to the stack trace information printed by #printStackTrace() .
voidprintStackTrace()
Prints this JAXBException and its stack trace (including the stack trace of the linkedException if it is non-null) to System.err .
voidprintStackTrace(java.io.PrintStream s)
Prints this JAXBException and its stack trace (including the stack trace of the linkedException if it is non-null) to the PrintStream.
voidprintStackTrace(PrintWriter s)
Prints this JAXBException and its stack trace (including the stack trace of the linkedException if it is non-null) to the PrintWriter.
StringtoString()
Returns a short description of this JAXBException.