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, resulting in SOAP
messages.
- Since:
- 1.0.0
- Author:
- Arjen Poutsma
resolveException
boolean resolveException(MessageContext messageContext,
Object endpoint,
Exception ex)
- 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:
true
if resolved; false
otherwise
Copyright © 2005-2010 The Spring Web Services Framework. All Rights Reserved.