Java javax.xml.soap SOAPException fields, constructors, methods, implement or subclass

Example usage for Java javax.xml.soap SOAPException fields, constructors, methods, implement or subclass

Introduction

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

The text is from its open source code.

Constructor

SOAPException(String reason)
Constructs a SOAPException object with the given String as the reason for the exception being thrown.
SOAPException(Throwable cause)
Constructs a SOAPException object initialized with the given Throwable object.
SOAPException(String reason, Throwable cause)
Constructs a SOAPException object with the given String as the reason for the exception being thrown and the given Throwable object as an embedded exception.

Method

ThrowablegetCause()
Returns the Throwable object embedded in this SOAPException if there is one.
ClassgetClass()
Returns the runtime class of this Object .
StringgetMessage()
Returns the detail message for this SOAPException object.
voidprintStackTrace()
Prints this throwable and its backtrace to the standard error stream.
StringtoString()
Returns a short description of this throwable.