Class SOAPException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.xmlbeans.impl.soap.SOAPException
-
- All Implemented Interfaces:
java.io.Serializable
public class SOAPException extends java.lang.ExceptionAn exception that signals that a SOAP exception has occurred. ASOAPExceptionobject may contain aStringthat gives the reason for the exception, an embeddedThrowableobject, or both. This class provides methods for retrieving reason messages and for retrieving the embeddedThrowableobject.Typical reasons for throwing a
SOAPExceptionobject are problems such as difficulty setting a header, not being able to send a message, and not being able to get a connection with the provider. Reasons for embedding aThrowableobject include problems such as input/output errors or a parsing problem, such as an error in parsing a header.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SOAPException()Constructs aSOAPExceptionobject with no reason or embeddedThrowableobject.SOAPException(java.lang.String reason)Constructs aSOAPExceptionobject with the givenStringas the reason for the exception being thrown.SOAPException(java.lang.String reason, java.lang.Throwable cause)Constructs aSOAPExceptionobject with the givenStringas the reason for the exception being thrown and the givenThrowableobject as an embedded exception.SOAPException(java.lang.Throwable cause)Constructs aSOAPExceptionobject initialized with the givenThrowableobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.ThrowablegetCause()Returns theThrowableobject embedded in thisSOAPExceptionif there is one.java.lang.StringgetMessage()Returns the detail message for thisSOAPExceptionobject.java.lang.ThrowableinitCause(java.lang.Throwable cause)Initializes thecausefield of thisSOAPExceptionobject with the givenThrowableobject.
-
-
-
Constructor Detail
-
SOAPException
public SOAPException()
Constructs aSOAPExceptionobject with no reason or embeddedThrowableobject.
-
SOAPException
public SOAPException(java.lang.String reason)
Constructs aSOAPExceptionobject with the givenStringas the reason for the exception being thrown.- Parameters:
reason- a description of what caused the exception
-
SOAPException
public SOAPException(java.lang.String reason, java.lang.Throwable cause)Constructs aSOAPExceptionobject with the givenStringas the reason for the exception being thrown and the givenThrowableobject as an embedded exception.- Parameters:
reason- a description of what caused the exceptioncause- aThrowableobject that is to be embedded in thisSOAPExceptionobject
-
SOAPException
public SOAPException(java.lang.Throwable cause)
Constructs aSOAPExceptionobject initialized with the givenThrowableobject.- Parameters:
cause- aThrowableobject that is to be embedded in thisSOAPExceptionobject
-
-
Method Detail
-
getMessage
public java.lang.String getMessage()
Returns the detail message for thisSOAPExceptionobject.If there is an embedded
Throwableobject, and if theSOAPExceptionobject has no detail message of its own, this method will return the detail message from the embeddedThrowableobject.- Overrides:
getMessagein classjava.lang.Throwable- Returns:
- the error or warning message for this
SOAPExceptionor, if it has none, the message of the embeddedThrowableobject, if there is one
-
getCause
public java.lang.Throwable getCause()
Returns theThrowableobject embedded in thisSOAPExceptionif there is one. Otherwise, this method returnsnull.- Overrides:
getCausein classjava.lang.Throwable- Returns:
- the embedded
Throwableobject ornullif there is none
-
initCause
public java.lang.Throwable initCause(java.lang.Throwable cause)
Initializes thecausefield of thisSOAPExceptionobject with the givenThrowableobject.This method can be called at most once. It is generally called from within the constructor or immediately after the constructor has returned a new
SOAPExceptionobject. If thisSOAPExceptionobject was created with the constructorSOAPException(java.lang.Throwable)orSOAPException(java.lang.String, java.lang.Throwable), meaning that itscausefield already has a value, this method cannot be called even once.- Overrides:
initCausein classjava.lang.Throwable- Parameters:
cause- theThrowableobject that caused thisSOAPExceptionobject to be thrown. The value of this parameter is saved for later retrieval by thegetCause()method. A null value is permitted and indicates that the cause is nonexistent or unknown.- Returns:
- a reference to this
SOAPExceptioninstance - Throws:
java.lang.IllegalArgumentException- ifcauseis thisThrowableobject. (AThrowableobject cannot be its own cause.)java.lang.IllegalStateException- if thisSOAPExceptionobject was created withSOAPException(java.lang.Throwable)orSOAPException(java.lang.String, java.lang.Throwable), or this method has already been called on thisSOAPExceptionobject
-
-