SAXException.hpp
上传用户:huihehuasu
上传日期:2007-01-10
资源大小:6948k
文件大小:7k
源码类别:

xml/soap/webservice

开发平台:

C/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.8  2000/09/07 23:55:02  andyh
  59.  * Fix SAXException assignment operator.  Now non-virtual, and
  60.  * SAXParseException invokes base class operator.
  61.  *
  62.  * Revision 1.7  2000/08/09 22:06:04  jpolast
  63.  * more functionality to SAXException and its children.
  64.  * msgs are now functional for SAXNotSupportedEx and
  65.  * SAXNotRecognizedEx
  66.  *
  67.  * Revision 1.6  2000/08/02 18:04:02  jpolast
  68.  * include SAXNotSupportedException and
  69.  * SAXNotRecognizedException needed for sax2
  70.  *
  71.  * Revision 1.5  2000/02/24 20:12:55  abagchi
  72.  * Swat for removing Log from API docs
  73.  *
  74.  * Revision 1.4  2000/02/09 19:15:17  abagchi
  75.  * Inserted documentation for new APIs
  76.  *
  77.  * Revision 1.3  2000/02/06 07:47:58  rahulj
  78.  * Year 2K copyright swat.
  79.  *
  80.  * Revision 1.2  1999/12/18 00:21:23  roddey
  81.  * Fixed a small reported memory leak
  82.  *
  83.  * Revision 1.1.1.1  1999/11/09 01:07:47  twl
  84.  * Initial checkin
  85.  *
  86.  * Revision 1.2  1999/11/08 20:45:02  rahul
  87.  * Swat for adding in Product name and CVS comment log variable.
  88.  *
  89.  */
  90. #ifndef SAXEXCEPTION_HPP
  91. #define SAXEXCEPTION_HPP
  92. #include <util/XMLString.hpp>
  93. #include <util/XMLUni.hpp>
  94. /**
  95.   * Encapsulate a general SAX error or warning.
  96.   *
  97.   * <p>This class can contain basic error or warning information from
  98.   * either the XML SAX parser or the application: a parser writer or
  99.   * application writer can subclass it to provide additional
  100.   * functionality.  SAX handlers may throw this exception or
  101.   * any exception subclassed from it.</p>
  102.   *
  103.   * <p>If the application needs to pass through other types of
  104.   * exceptions, it must wrap those exceptions in a SAXException
  105.   * or an exception derived from a SAXException.</p>
  106.   *
  107.   * <p>If the parser or application needs to include information
  108.   * about a specific location in an XML document, it should use the
  109.   * SAXParseException subclass.</p>
  110.   *
  111.   * @see SAXParseException#SAXParseException
  112.   */
  113. class SAX_EXPORT SAXException
  114. {
  115. public:
  116.     /** @name Constructors and Destructor */
  117.     //@{
  118.     /** Default constructor 
  119.      */
  120.     SAXException() :
  121.         fMsg(XMLString::replicate(XMLUni::fgZeroLenString))
  122.     {
  123.     }
  124.   /**
  125.     * Create a new SAXException.
  126.     *
  127.     * @param msg The error or warning message.
  128.     */
  129.     SAXException(const XMLCh* const msg) :
  130.         fMsg(XMLString::replicate(msg))
  131.     {
  132.     }
  133.   /**
  134.     * Create a new SAXException.
  135.     *
  136.     * @param msg The error or warning message.
  137.     */
  138.     SAXException(const char* const msg) :
  139.         fMsg(XMLString::transcode(msg))
  140.     {
  141.     }
  142.   /**
  143.     * Copy constructor
  144.     *
  145.     * @param toCopy The exception to be copy constructed
  146.     */
  147.     SAXException(const SAXException& toCopy) :
  148.         fMsg(XMLString::replicate(toCopy.fMsg))
  149.     {
  150.     }
  151.     /** Destructor */
  152.     virtual ~SAXException()
  153.     {
  154.         delete [] fMsg;
  155.     }
  156.     //@}
  157.     /** @name Public Operators */
  158.     //@{
  159.     /**
  160.       * Assignment operator
  161.       *
  162.       * @param toCopy The object to be copied
  163.       */
  164.     SAXException& operator=(const SAXException& toCopy)
  165.     {
  166.         if (this == &toCopy)
  167.             return *this;
  168.         delete [] fMsg;
  169.         fMsg = XMLString::replicate(toCopy.fMsg);
  170.         return *this;
  171.     }
  172.     //@}
  173.     /** @name Getter Methods */
  174.     //@{
  175.     /**
  176.       * Get the contents of the message
  177.       *
  178.       */
  179.     virtual const XMLCh* getMessage() const
  180.     {
  181.         return fMsg;
  182.     }
  183.     //@}
  184. protected :
  185.     // -----------------------------------------------------------------------
  186.     //  Protected data members
  187.     //
  188.     //  fMsg
  189.     //      This is the text of the error that is being thrown.
  190.     // -----------------------------------------------------------------------
  191.     XMLCh*  fMsg;
  192. };
  193. class SAXNotSupportedException : public SAXException
  194. {
  195. public:
  196. SAXNotSupportedException();
  197.   /**
  198.     * Create a new SAXException.
  199.     *
  200.     * @param msg The error or warning message.
  201.     */
  202.     SAXNotSupportedException(const XMLCh* const msg);
  203.   /**
  204.     * Create a new SAXException.
  205.     *
  206.     * @param msg The error or warning message.
  207.     */
  208.     SAXNotSupportedException(const char* const msg);
  209.   /**
  210.     * Copy constructor
  211.     *
  212.     * @param toCopy The exception to be copy constructed
  213.     */
  214.     SAXNotSupportedException(const SAXException& toCopy);
  215. };
  216. class SAXNotRecognizedException : public SAXException
  217. {
  218. public:
  219. SAXNotRecognizedException();
  220.   /**
  221.     * Create a new SAXException.
  222.     *
  223.     * @param msg The error or warning message.
  224.     */
  225.     SAXNotRecognizedException(const XMLCh* const msg);
  226.   /**
  227.     * Create a new SAXException.
  228.     *
  229.     * @param msg The error or warning message.
  230.     */
  231.     SAXNotRecognizedException(const char* const msg);
  232.   /**
  233.     * Copy constructor
  234.     *
  235.     * @param toCopy The exception to be copy constructed
  236.     */
  237.     SAXNotRecognizedException(const SAXException& toCopy);
  238. };
  239. #endif