You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ta...@apache.org on 2018/12/23 09:43:36 UTC

[myfaces] branch master updated: fixed exception

This is an automated email from the ASF dual-hosted git repository.

tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b96815  fixed exception
5b96815 is described below

commit 5b968151f56a6a397ea703fe88468e938d9fe12e
Author: Thomas Andraschko <ta...@apache.org>
AuthorDate: Sun Dec 23 10:43:46 2018 +0100

    fixed exception
---
 impl/src/main/java/org/apache/myfaces/config/MyfacesConfig.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/impl/src/main/java/org/apache/myfaces/config/MyfacesConfig.java b/impl/src/main/java/org/apache/myfaces/config/MyfacesConfig.java
index 7dc5a45..dfa9ba3 100755
--- a/impl/src/main/java/org/apache/myfaces/config/MyfacesConfig.java
+++ b/impl/src/main/java/org/apache/myfaces/config/MyfacesConfig.java
@@ -866,7 +866,7 @@ public class MyfacesConfig
         {
             cfg.projectStage = ProjectStage.valueOf(getString(extCtx, ProjectStage.PROJECT_STAGE_PARAM_NAME, null));
         }
-        catch (IllegalArgumentException e)
+        catch (Exception e)
         {
             // ignore, it's logged in ApplicationImpl
         }