SAXException.hpp
上传用户:zhuqijet
上传日期:2013-06-25
资源大小:10074k
文件大小:8k
源码类别:

词法分析

开发平台:

Visual C++

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999-2000 The Apache Software Foundation.  All rights
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution,
  20.  *    if any, must include the following acknowledgment:
  21.  *       "This product includes software developed by the
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowledgment may appear in the software itself,
  24.  *    if and wherever such third-party acknowledgments normally appear.
  25.  *
  26.  * 4. The names "Xerces" and "Apache Software Foundation" must
  27.  *    not be used to endorse or promote products derived from this
  28.  *    software without prior written permission. For written
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache",
  32.  *    nor may "Apache" appear in their name, without prior written
  33.  *    permission of the Apache Software Foundation.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation, and was
  51.  * originally based on software copyright (c) 1999, International
  52.  * Business Machines, Inc., http://www.ibm.com .  For more information
  53.  * on the Apache Software Foundation, please see
  54.  * <http://www.apache.org/>.
  55.  */
  56. /*
  57.  * $Log: SAXException.hpp,v $
  58.  * Revision 1.4  2003/05/15 18:27:05  knoaman
  59.  * Partial implementation of the configurable memory manager.
  60.  *
  61.  * Revision 1.3  2002/12/06 13:17:29  tng
  62.  * [Bug 9083] Make SAXNotSupportedException and SAXNotRecognizedException to be exportable
  63.  *
  64.  * Revision 1.2  2002/11/04 14:56:26  tng
  65.  * C++ Namespace Support.
  66.  *
  67.  * Revision 1.1.1.1  2002/02/01 22:22:08  peiyongz
  68.  * sane_include
  69.  *
  70.  * Revision 1.8  2000/09/07 23:55:02  andyh
  71.  * Fix SAXException assignment operator.  Now non-virtual, and
  72.  * SAXParseException invokes base class operator.
  73.  *
  74.  * Revision 1.7  2000/08/09 22:06:04  jpolast
  75.  * more functionality to SAXException and its children.
  76.  * msgs are now functional for SAXNotSupportedEx and
  77.  * SAXNotRecognizedEx
  78.  *
  79.  * Revision 1.6  2000/08/02 18:04:02  jpolast
  80.  * include SAXNotSupportedException and
  81.  * SAXNotRecognizedException needed for sax2
  82.  *
  83.  * Revision 1.5  2000/02/24 20:12:55  abagchi
  84.  * Swat for removing Log from API docs
  85.  *
  86.  * Revision 1.4  2000/02/09 19:15:17  abagchi
  87.  * Inserted documentation for new APIs
  88.  *
  89.  * Revision 1.3  2000/02/06 07:47:58  rahulj
  90.  * Year 2K copyright swat.
  91.  *
  92.  * Revision 1.2  1999/12/18 00:21:23  roddey
  93.  * Fixed a small reported memory leak
  94.  *
  95.  * Revision 1.1.1.1  1999/11/09 01:07:47  twl
  96.  * Initial checkin
  97.  *
  98.  * Revision 1.2  1999/11/08 20:45:02  rahul
  99.  * Swat for adding in Product name and CVS comment log variable.
  100.  *
  101.  */
  102. #ifndef SAXEXCEPTION_HPP
  103. #define SAXEXCEPTION_HPP
  104. #include <xercesc/util/XMLString.hpp>
  105. #include <xercesc/util/XMLUni.hpp>
  106. #include <xercesc/util/XMemory.hpp>
  107. XERCES_CPP_NAMESPACE_BEGIN
  108. /**
  109.   * Encapsulate a general SAX error or warning.
  110.   *
  111.   * <p>This class can contain basic error or warning information from
  112.   * either the XML SAX parser or the application: a parser writer or
  113.   * application writer can subclass it to provide additional
  114.   * functionality.  SAX handlers may throw this exception or
  115.   * any exception subclassed from it.</p>
  116.   *
  117.   * <p>If the application needs to pass through other types of
  118.   * exceptions, it must wrap those exceptions in a SAXException
  119.   * or an exception derived from a SAXException.</p>
  120.   *
  121.   * <p>If the parser or application needs to include information
  122.   * about a specific location in an XML document, it should use the
  123.   * SAXParseException subclass.</p>
  124.   *
  125.   * @see SAXParseException#SAXParseException
  126.   */
  127. class SAX_EXPORT SAXException : public XMemory
  128. {
  129. public:
  130.     /** @name Constructors and Destructor */
  131.     //@{
  132.     /** Default constructor
  133.      */
  134.     SAXException() :
  135.         fMsg(XMLString::replicate(XMLUni::fgZeroLenString))
  136.     {
  137.     }
  138.   /**
  139.     * Create a new SAXException.
  140.     *
  141.     * @param msg The error or warning message.
  142.     */
  143.     SAXException(const XMLCh* const msg) :
  144.         fMsg(XMLString::replicate(msg))
  145.     {
  146.     }
  147.   /**
  148.     * Create a new SAXException.
  149.     *
  150.     * @param msg The error or warning message.
  151.     */
  152.     SAXException(const char* const msg) :
  153.         fMsg(XMLString::transcode(msg))
  154.     {
  155.     }
  156.   /**
  157.     * Copy constructor
  158.     *
  159.     * @param toCopy The exception to be copy constructed
  160.     */
  161.     SAXException(const SAXException& toCopy) :
  162.         fMsg(XMLString::replicate(toCopy.fMsg))
  163.     {
  164.     }
  165.     /** Destructor */
  166.     virtual ~SAXException()
  167.     {
  168.         delete [] fMsg;
  169.     }
  170.     //@}
  171.     /** @name Public Operators */
  172.     //@{
  173.     /**
  174.       * Assignment operator
  175.       *
  176.       * @param toCopy The object to be copied
  177.       */
  178.     SAXException& operator=(const SAXException& toCopy)
  179.     {
  180.         if (this == &toCopy)
  181.             return *this;
  182.         delete [] fMsg;
  183.         fMsg = XMLString::replicate(toCopy.fMsg);
  184.         return *this;
  185.     }
  186.     //@}
  187.     /** @name Getter Methods */
  188.     //@{
  189.     /**
  190.       * Get the contents of the message
  191.       *
  192.       */
  193.     virtual const XMLCh* getMessage() const
  194.     {
  195.         return fMsg;
  196.     }
  197.     //@}
  198. protected :
  199.     // -----------------------------------------------------------------------
  200.     //  Protected data members
  201.     //
  202.     //  fMsg
  203.     //      This is the text of the error that is being thrown.
  204.     // -----------------------------------------------------------------------
  205.     XMLCh*  fMsg;
  206. };
  207. class SAX_EXPORT SAXNotSupportedException : public SAXException
  208. {
  209. public:
  210. SAXNotSupportedException();
  211.   /**
  212.     * Create a new SAXException.
  213.     *
  214.     * @param msg The error or warning message.
  215.     */
  216.     SAXNotSupportedException(const XMLCh* const msg);
  217.   /**
  218.     * Create a new SAXException.
  219.     *
  220.     * @param msg The error or warning message.
  221.     */
  222.     SAXNotSupportedException(const char* const msg);
  223.   /**
  224.     * Copy constructor
  225.     *
  226.     * @param toCopy The exception to be copy constructed
  227.     */
  228.     SAXNotSupportedException(const SAXException& toCopy);
  229. };
  230. class SAX_EXPORT SAXNotRecognizedException : public SAXException
  231. {
  232. public:
  233. SAXNotRecognizedException();
  234.   /**
  235.     * Create a new SAXException.
  236.     *
  237.     * @param msg The error or warning message.
  238.     */
  239.     SAXNotRecognizedException(const XMLCh* const msg);
  240.   /**
  241.     * Create a new SAXException.
  242.     *
  243.     * @param msg The error or warning message.
  244.     */
  245.     SAXNotRecognizedException(const char* const msg);
  246.   /**
  247.     * Copy constructor
  248.     *
  249.     * @param toCopy The exception to be copy constructed
  250.     */
  251.     SAXNotRecognizedException(const SAXException& toCopy);
  252. };
  253. XERCES_CPP_NAMESPACE_END
  254. #endif