File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
core/src/main/java/org/springframework/ws/endpoint Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ public final Source invoke(Source request) throws Exception {
57
57
*
58
58
* @return a SAX content handler to be used for parsing
59
59
*/
60
- protected abstract ContentHandler createContentHandler ();
60
+ protected abstract ContentHandler createContentHandler () throws Exception ;
61
61
62
62
/**
63
63
* Returns the response to be given, if any. This method is called after the request payload has been parse using
@@ -66,5 +66,5 @@ public final Source invoke(Source request) throws Exception {
66
66
*
67
67
* @param contentHandler the content handler used to parse the request
68
68
*/
69
- protected abstract Source getResponse (ContentHandler contentHandler );
69
+ protected abstract Source getResponse (ContentHandler contentHandler ) throws Exception ;
70
70
}
You can’t perform that action at this time.
0 commit comments