Package org.springframework.ws
Class WebServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.ws.WebServiceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
AddressingException
,InvalidXmlException
,NoEndpointFoundException
,WebServiceClientException
,WebServiceMessageException
,WsdlDefinitionException
,WsSecurityException
public abstract class WebServiceException
extends org.springframework.core.NestedRuntimeException
Root of the hierarchy of Web Service exceptions.
- Since:
- 1.0.0
- Author:
- Arjen Poutsma
- See Also:
-
Constructor Summary
ConstructorDescriptionCreate a new instance of theWebServiceException
class.WebServiceException
(String msg, Throwable ex) Create a new instance of theWebServiceException
class. -
Method Summary
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMostSpecificCause, getRootCause
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
WebServiceException
Create a new instance of theWebServiceException
class.- Parameters:
msg
- the detail message
-
WebServiceException
Create a new instance of theWebServiceException
class.- Parameters:
msg
- the detail messageex
- the rootexception
-