Repository: struts Updated Branches: refs/heads/master eb564a25e -> 181720781
Correct Exception type in java doc Project: http://git-wip-us.apache.org/repos/asf/struts/repo Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/18172078 Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/18172078 Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/18172078 Branch: refs/heads/master Commit: 18172078164720835b696d5a583b3a1e7d7971bb Parents: eb564a2 Author: Johannes Geppert <[email protected]> Authored: Thu Jul 16 22:35:32 2015 +0200 Committer: Johannes Geppert <[email protected]> Committed: Thu Jul 16 22:35:32 2015 +0200 ---------------------------------------------------------------------- core/src/main/java/com/opensymphony/xwork2/XWork.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/struts/blob/18172078/core/src/main/java/com/opensymphony/xwork2/XWork.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/com/opensymphony/xwork2/XWork.java b/core/src/main/java/com/opensymphony/xwork2/XWork.java index fddc75b..1619a93 100644 --- a/core/src/main/java/com/opensymphony/xwork2/XWork.java +++ b/core/src/main/java/com/opensymphony/xwork2/XWork.java @@ -47,7 +47,7 @@ public class XWork { * @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(); @@ -61,7 +61,7 @@ public class XWork { * @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();
