Package org.springframework.ws.server
Interface EndpointExceptionResolver
- All Known Implementing Classes:
AbstractEndpointExceptionResolver,AbstractSoapFaultDefinitionExceptionResolver,SimpleSoapExceptionResolver,SoapFaultAnnotationExceptionResolver,SoapFaultMappingExceptionResolver
public interface EndpointExceptionResolver
Defines the interface for objects than can resolve exceptions thrown during endpoint execution.
- Since:
- 1.0.0
- Author:
- Arjen Poutsma
-
Method Summary
Modifier and TypeMethodDescriptionbooleanresolveException(MessageContext messageContext, Object endpoint, Exception ex) Try to resolve the given exception that got thrown during on endpoint execution.
-
Method Details
-
resolveException
Try to resolve the given exception that got thrown during on endpoint execution.- 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:
trueif resolved;falseotherwise
-