Skip to content

Commit 3e744e7

Browse files
committed
SWS-737 - EndpointInterceptorAdapter removes "throws Exception" from handleFault() method defined by EndpointInterceptor
1 parent 932f076 commit 3e744e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/src/main/java/org/springframework/ws/server/endpoint/interceptor/EndpointInterceptorAdapter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,13 +63,13 @@ public boolean handleResponse(MessageContext messageContext, Object endpoint) th
6363
*
6464
* @return <code>true</code>
6565
*/
66-
public boolean handleFault(MessageContext messageContext, Object endpoint) {
66+
public boolean handleFault(MessageContext messageContext, Object endpoint) throws Exception {
6767
return true;
6868
}
6969

7070
/**
7171
* Does nothing by default.
7272
*/
73-
public void afterCompletion(MessageContext messageContext, Object endpoint, Exception ex) {
73+
public void afterCompletion(MessageContext messageContext, Object endpoint, Exception ex) throws Exception {
7474
}
7575
}

0 commit comments

Comments
 (0)