SWS-737 - EndpointInterceptorAdapter removes "throws Exception" from handleFault() method defined by EndpointInterceptor

This commit is contained in:
Arjen Poutsma
2011-10-17 08:08:57 +00:00
parent 932f0769a7
commit 3e744e7ba4

View File

@@ -63,13 +63,13 @@ public class EndpointInterceptorAdapter implements EndpointInterceptor {
*
* @return <code>true</code>
*/
public boolean handleFault(MessageContext messageContext, Object endpoint) {
public boolean handleFault(MessageContext messageContext, Object endpoint) throws Exception {
return true;
}
/**
* Does nothing by default.
*/
public void afterCompletion(MessageContext messageContext, Object endpoint, Exception ex) {
public void afterCompletion(MessageContext messageContext, Object endpoint, Exception ex) throws Exception {
}
}