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 Type
    Method
    Description
    boolean
    resolveException(MessageContext messageContext, Object endpoint, Exception ex)
    Try to resolve the given exception that got thrown during on endpoint execution.
  • Method Details

    • 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