You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by jp...@locus.apache.org on 2000/08/02 20:04:02 UTC

cvs commit: xml-xerces/c/src/sax SAXException.hpp

jpolast     00/08/02 11:04:02

  Modified:    c/src/sax SAXException.hpp
  Log:
  include SAXNotSupportedException and
  SAXNotRecognizedException needed for sax2
  
  Revision  Changes    Path
  1.6       +11 -0     xml-xerces/c/src/sax/SAXException.hpp
  
  Index: SAXException.hpp
  ===================================================================
  RCS file: /home/cvs/xml-xerces/c/src/sax/SAXException.hpp,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SAXException.hpp	2000/02/24 20:12:55	1.5
  +++ SAXException.hpp	2000/08/02 18:04:02	1.6
  @@ -56,6 +56,10 @@
   
   /*
    * $Log: SAXException.hpp,v $
  + * Revision 1.6  2000/08/02 18:04:02  jpolast
  + * include SAXNotSupportedException and
  + * SAXNotRecognizedException needed for sax2
  + *
    * Revision 1.5  2000/02/24 20:12:55  abagchi
    * Swat for removing Log from API docs
    *
  @@ -197,6 +201,14 @@
       //      This is the text of the error that is being thrown.
       // -----------------------------------------------------------------------
       XMLCh*  fMsg;
  +};
  +
  +class SAXNotSupportedException : public SAXException
  +{
  +};
  +
  +class SAXNotRecognizedException : public SAXException
  +{
   };
   
   #endif