Package com.sun.xml.messaging.saaj.soap
Class SOAPVersionMismatchException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- javax.xml.soap.SOAPException
-
- com.sun.xml.messaging.saaj.SOAPExceptionImpl
-
- com.sun.xml.messaging.saaj.soap.SOAPVersionMismatchException
-
- All Implemented Interfaces:
Serializable
public class SOAPVersionMismatchException extends SOAPExceptionImpl
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SOAPVersionMismatchException()Constructs aSOAPExceptionImplobject with no reason or embeddedThrowableobject.SOAPVersionMismatchException(String reason)Constructs aSOAPExceptionImplobject with the givenStringas the reason for the exception being thrown.SOAPVersionMismatchException(String reason, Throwable cause)Constructs aSOAPExceptionImplobject with the givenStringas the reason for the exception being thrown and the givenThrowableobject as an embedded exception.SOAPVersionMismatchException(Throwable cause)Constructs aSOAPExceptionImplobject initialized with the givenThrowableobject.
-
Method Summary
-
Methods inherited from class com.sun.xml.messaging.saaj.SOAPExceptionImpl
getCause, getMessage, initCause, printStackTrace, printStackTrace, printStackTrace
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getLocalizedMessage, getStackTrace, getSuppressed, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SOAPVersionMismatchException
public SOAPVersionMismatchException()
Constructs aSOAPExceptionImplobject with no reason or embeddedThrowableobject.
-
SOAPVersionMismatchException
public SOAPVersionMismatchException(String reason)
Constructs aSOAPExceptionImplobject with the givenStringas the reason for the exception being thrown.- Parameters:
reason- a description of what caused the exception
-
SOAPVersionMismatchException
public SOAPVersionMismatchException(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
-
SOAPVersionMismatchException
public SOAPVersionMismatchException(Throwable cause)
Constructs aSOAPExceptionImplobject initialized with the givenThrowableobject.- Parameters:
cause- aThrowableobject that is to be embedded in thisSOAPExceptionImplobject
-
-