You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jo...@apache.org on 2003/07/12 16:45:26 UTC

cvs commit: cocoon-2.1/src/blocks/jsp/java/org/apache/cocoon/generation JspGenerator.java

joerg       2003/07/12 07:45:26

  Modified:    src/blocks/jsp/java/org/apache/cocoon/generation
                        JspGenerator.java
  Log:
  reverted removal of re-throw of ProcessingException
  
  Revision  Changes    Path
  1.5       +3 -1      cocoon-2.1/src/blocks/jsp/java/org/apache/cocoon/generation/JspGenerator.java
  
  Index: JspGenerator.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/jsp/java/org/apache/cocoon/generation/JspGenerator.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- JspGenerator.java	12 Jul 2003 13:30:02 -0000	1.4
  +++ JspGenerator.java	12 Jul 2003 14:45:26 -0000	1.5
  @@ -131,6 +131,8 @@
               throw new ProcessingException("SAXException JspGenerator.generate()",e.getException());
           } catch (IOException e) {
               throw new ProcessingException("IOException JspGenerator.generate()",e);
  +        } catch (ProcessingException e) {
  +            throw e;
           } catch (Exception e) {
               throw new ProcessingException("Exception JspGenerator.generate()",e);
           } finally {
  
  
  

Re: cvs commit: cocoon-2.1/src/blocks/jsp/java/org/apache/cocoon/generation JspGenerator.java

Posted by Vadim Gritsenko <va...@verizon.net>.
joerg@apache.org wrote:

>joerg       2003/07/12 07:45:26
>
>  Modified:    src/blocks/jsp/java/org/apache/cocoon/generation
>                        JspGenerator.java
>  Log:
>  reverted removal of re-throw of ProcessingException
>  
>

Thanks
:)

Vadim