Spring Web Services Framework

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

Method Summary
 boolean resolveException(MessageContext messageContext, Object endpoint, Exception ex)
          Try to resolve the given exception that got thrown during on endpoint execution.
 

Method Detail

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 context
endpoint - the executed endpoint, or null if none chosen at the time of the exception
ex - the exception that got thrown during endpoint execution
Returns:
true if resolved; false otherwise

Spring Web Services Framework

Copyright � 2005-2008 The Spring Web Services Framework. All Rights Reserved.