dbertoni    00/05/11 12:31:53

  Modified:    c/src/XSLT XSLTEngineImpl.cpp
  Log:
  Removed spurious assert and added re-throw of exception.
  
  Revision  Changes    Path
  1.34      +4 -1      xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp
  
  Index: XSLTEngineImpl.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/XSLTEngineImpl.cpp,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- XSLTEngineImpl.cpp        2000/05/11 19:09:26     1.33
  +++ XSLTEngineImpl.cpp        2000/05/11 19:31:52     1.34
  @@ -497,11 +497,14 @@
        catch(SAXException& se)
        {
                message("SAX Exception");
  +
                throw se;
        }
        catch (...)
        {
  -             assert(0);
  +             message("Unknown Exception");
  +
  +             throw;
        }
   }
   
  
  
  

Reply via email to