Skip to content

Commit

Permalink
Correct Exception type in java doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jogep committed Jul 16, 2015
1 parent eb564a2 commit 1817207
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/com/opensymphony/xwork2/XWork.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void setLoggerFactory(LoggerFactory factory) {
* @param namespace The namespace
* @param name The action name
* @param method The method name
* @throws Exception If anything goes wrong
* @throws XWorkException If anything goes wrong
*/
public void executeAction(String namespace, String name, String method) throws XWorkException {
Map<String, Object> extraContext = Collections.emptyMap();
Expand All @@ -61,7 +61,7 @@ public void executeAction(String namespace, String name, String method) throws X
* @param name The action name
* @param method The method name
* @param extraContext A map of extra context information
* @throws Exception If anything goes wrong
* @throws XWorkException If anything goes wrong
*/
public void executeAction(String namespace, String name, String method, Map<String, Object> extraContext) throws XWorkException {
Configuration config = configurationManager.getConfiguration();
Expand Down

0 comments on commit 1817207

Please sign in to comment.