Class SOAPExceptionImpl
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.xml.soap.SOAPException
-
- com.sun.xml.messaging.saaj.SOAPExceptionImpl
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SOAPVersionMismatchException
public class SOAPExceptionImpl extends javax.xml.soap.SOAPExceptionAn exception that signals that a SOAP exception has occurred. ASOAPExceptionImplobject 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
SOAPExceptionImplobject 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 SOAPExceptionImpl()Constructs aSOAPExceptionImplobject with no reason or embeddedThrowableobject.SOAPExceptionImpl(String reason)Constructs aSOAPExceptionImplobject with the givenStringas the reason for the exception being thrown.SOAPExceptionImpl(String reason, Throwable cause)Constructs aSOAPExceptionImplobject with the givenStringas the reason for the exception being thrown and the givenThrowableobject as an embedded exception.SOAPExceptionImpl(Throwable cause)Constructs aSOAPExceptionImplobject initialized with the givenThrowableobject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ThrowablegetCause()Returns theThrowableobject embedded in thisSOAPExceptionImplif there is one.StringgetMessage()Returns the detail message for thisSOAPExceptionImplobject.ThrowableinitCause(Throwable cause)Initializes thecausefield of thisSOAPExceptionImplobject with the givenThrowableobject.voidprintStackTrace()voidprintStackTrace(PrintStream s)voidprintStackTrace(PrintWriter s)-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SOAPExceptionImpl
public SOAPExceptionImpl()
Constructs aSOAPExceptionImplobject with no reason or embeddedThrowableobject.
-
SOAPExceptionImpl
public SOAPExceptionImpl(String reason)
Constructs aSOAPExceptionImplobject with the givenStringas the reason for the exception being thrown.- Parameters:
reason- a description of what caused the exception
-
SOAPExceptionImpl
public SOAPExceptionImpl(String reason, Throwable cause)
Constructs aSOAPExceptionImplobject 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 thisSOAPExceptionImplobject
-
SOAPExceptionImpl
public SOAPExceptionImpl(Throwable cause)
Constructs aSOAPExceptionImplobject initialized with the givenThrowableobject.- Parameters:
cause- cause
-
-
Method Detail
-
getMessage
public String getMessage()
Returns the detail message for thisSOAPExceptionImplobject.If there is an embedded
Throwableobject, and if theSOAPExceptionImplobject has no detail message of its own, this method will return the detail message from the embeddedThrowableobject.- Overrides:
getMessagein classjavax.xml.soap.SOAPException- Returns:
- the error or warning message for this
SOAPExceptionImplor, if it has none, the message of the embeddedThrowableobject, if there is one
-
getCause
public Throwable getCause()
Returns theThrowableobject embedded in thisSOAPExceptionImplif there is one. Otherwise, this method returnsnull.- Overrides:
getCausein classjavax.xml.soap.SOAPException- Returns:
- the embedded
Throwableobject ornullif there is none
-
initCause
public Throwable initCause(Throwable cause)
Initializes thecausefield of thisSOAPExceptionImplobject 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
SOAPExceptionImplobject. If thisSOAPExceptionImplobject was created with the constructorSOAPExceptionImpl(Throwable)orSOAPExceptionImpl(String,Throwable), meaning that itscausefield already has a value, this method cannot be called even once.- Overrides:
initCausein classjavax.xml.soap.SOAPException- Parameters:
cause- theThrowableobject that caused thisSOAPExceptionImplobject to be thrown. The value of this parameter is saved for later retrieval by thegetCause()method. Anullvalue is permitted and indicates that the cause is nonexistent or unknown.- Returns:
- a reference to this
SOAPExceptionImplinstance - Throws:
IllegalArgumentException- ifcauseis thisThrowableobject. (AThrowableobject cannot be its own cause.)IllegalStateException- if thisSOAPExceptionImplobject was created withSOAPExceptionImpl(Throwable)orSOAPExceptionImpl(String,Throwable), or this method has already been called on thisSOAPExceptionImplobject
-
printStackTrace
public void printStackTrace()
- Overrides:
printStackTracein classThrowable
-
printStackTrace
public void printStackTrace(PrintStream s)
- Overrides:
printStackTracein classThrowable
-
printStackTrace
public void printStackTrace(PrintWriter s)
- Overrides:
printStackTracein classThrowable
-
-