Class CompositeEndpointExceptionResolver
java.lang.Object
org.springframework.ws.server.endpoint.CompositeEndpointExceptionResolver
- All Implemented Interfaces:
EndpointExceptionResolver
A composite of endpoint exception
resolvers.
- Since:
- 4.1.0
-
Constructor Summary
ConstructorsConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
resolveException
(MessageContext messageContext, @Nullable Object endpoint, Exception ex) Try to resolve the given exception that got thrown during on endpoint execution.
-
Constructor Details
-
CompositeEndpointExceptionResolver
-
-
Method Details
-
resolveException
public final boolean resolveException(MessageContext messageContext, @Nullable Object endpoint, Exception ex) Description copied from interface:EndpointExceptionResolver
Try to resolve the given exception that got thrown during on endpoint execution.- Specified by:
resolveException
in interfaceEndpointExceptionResolver
- Parameters:
messageContext
- current message contextendpoint
- the executed endpoint, or null if none chosen at the time of the exceptionex
- the exception that got thrown during endpoint execution- Returns:
true
if resolved;false
otherwise
-