Skip to content

Commit

Permalink
SWS-737 - EndpointInterceptorAdapter removes "throws Exception" from …
Browse files Browse the repository at this point in the history
…handleFault() method defined by EndpointInterceptor
  • Loading branch information
poutsma committed Oct 17, 2011
1 parent 932f076 commit 3e744e7
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -63,13 +63,13 @@ public boolean handleResponse(MessageContext messageContext, Object endpoint) th
*
* @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 {
}
}

0 comments on commit 3e744e7

Please sign in to comment.