Example usage for Java javax.xml.soap SOAPException fields, constructors, methods, implement or subclass
The text is from its open source code.
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. |
Throwable | getCause() Returns the Throwable object embedded in this SOAPException if there is one. |
Class> | getClass() Returns the runtime class of this Object . |
String | getMessage() Returns the detail message for this SOAPException object. |
void | printStackTrace() Prints this throwable and its backtrace to the standard error stream. |
String | toString() Returns a short description of this throwable. |