You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by mo...@apache.org on 2003/02/01 00:50:52 UTC

cvs commit: jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl StaticTagScript.java

morgand     2003/01/31 15:50:51

  Modified:    jelly/src/java/org/apache/commons/jelly/impl
                        StaticTagScript.java
  Log:
  adding more specific exceptions to catch block
  
  Revision  Changes    Path
  1.16      +1 -4      jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl/StaticTagScript.java
  
  Index: StaticTagScript.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/jelly/src/java/org/apache/commons/jelly/impl/StaticTagScript.java,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- StaticTagScript.java	27 Jan 2003 17:54:38 -0000	1.15
  +++ StaticTagScript.java	31 Jan 2003 23:50:51 -0000	1.16
  @@ -146,10 +146,7 @@
           catch (JellyTagException e) {
               handleException(e);
           }
  -        catch (JellyException e) {
  -            handleException(e);
  -        }
  -        catch (Exception e) {
  +        catch (RuntimeException e) {
               handleException(e);
           }
           
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org