Example usage for Java javax.xml.bind JAXBException fields, constructors, methods, implement or subclass
The text is from its open source code.
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. |
Throwable | getCause() |
Class> | getClass() Returns the runtime class of this Object . |
String | getErrorCode() Get the vendor specific error code |
Throwable | getLinkedException() Get the linked exception |
String | getLocalizedMessage() Creates a localized description of this throwable. |
String | getMessage() Returns the detail message string of this throwable. |
StackTraceElement[] | getStackTrace() Provides programmatic access to the stack trace information printed by #printStackTrace() . |
void | printStackTrace() Prints this JAXBException and its stack trace (including the stack trace of the linkedException if it is non-null) to System.err . |
void | printStackTrace(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. |
void | printStackTrace(PrintWriter s) Prints this JAXBException and its stack trace (including the stack trace of the linkedException if it is non-null) to the PrintWriter. |
String | toString() Returns a short description of this JAXBException. |