You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by gr...@locus.apache.org on 2000/12/01 19:01:14 UTC

cvs commit: xml-cocoon/src/org/apache/cocoon/processor/xsp XSPProcessor.java

greenrd     00/12/01 10:01:14

  Modified:    src/org/apache/cocoon/processor/xsp XSPProcessor.java
  Log:
  error handling bugfix
  
  Revision  Changes    Path
  1.31      +2 -2      xml-cocoon/src/org/apache/cocoon/processor/xsp/XSPProcessor.java
  
  Index: XSPProcessor.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon/src/org/apache/cocoon/processor/xsp/XSPProcessor.java,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- XSPProcessor.java	2000/11/20 01:43:57	1.30
  +++ XSPProcessor.java	2000/12/01 18:01:12	1.31
  @@ -1,4 +1,4 @@
  -/*-- $Id: XSPProcessor.java,v 1.30 2000/11/20 01:43:57 greenrd Exp $ --
  +/*-- $Id: XSPProcessor.java,v 1.31 2000/12/01 18:01:12 greenrd Exp $ --
   
    ============================================================================
                      The Apache Software License, Version 1.1
  @@ -78,7 +78,7 @@
    * This class implements the XSP engine.
    *
    * @author <a href="mailto:ricardo@apache.org">Ricardo Rocha</a>
  - * @version $Revision: 1.30 $ $Date: 2000/11/20 01:43:57 $
  + * @version $Revision: 1.31 $ $Date: 2000/12/01 18:01:12 $
    */
   public class XSPProcessor extends AbstractActor
     implements Processor, Configurable, Status, Cacheable
  @@ -176,8 +176,8 @@
               }
       
               xspLogicsheets.put(languageName, logicsheet);
  -        } catch (SAXException e) {
  -            throw new RuntimeException(Utils.getStackTraceAsString(e.getException()));
  +//        } catch (SAXException e) {
  +//            throw new RuntimeException(Utils.getStackTraceAsString(e.getException()));
           } catch (Exception e) {
               throw new RuntimeException("Error while initializing XSP engine: " +
                                          Utils.getStackTraceAsString(e));