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

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: SAXParseException.hpp,v $
  58.  * Revision 1.5  2000/02/24 20:12:55  abagchi
  59.  * Swat for removing Log from API docs
  60.  *
  61.  * Revision 1.4  2000/02/12 01:27:19  aruna1
  62.  * Documentation updated
  63.  *
  64.  * Revision 1.3  2000/02/09 19:24:49  abagchi
  65.  * Inserted documentation for constructors and destructors
  66.  *
  67.  * Revision 1.2  2000/02/06 07:47:58  rahulj
  68.  * Year 2K copyright swat.
  69.  *
  70.  * Revision 1.1.1.1  1999/11/09 01:07:47  twl
  71.  * Initial checkin
  72.  *
  73.  * Revision 1.2  1999/11/08 20:45:02  rahul
  74.  * Swat for adding in Product name and CVS comment log variable.
  75.  *
  76.  */
  77. #ifndef SAXPARSEEXCEPTION_HPP
  78. #define SAXPARSEEXCEPTION_HPP
  79. #include    <sax/SAXException.hpp>
  80. class Locator;
  81. /**
  82.   * Encapsulate an XML parse error or warning.
  83.   *
  84.   * <p>This exception will include information for locating the error
  85.   * in the original XML document.  Note that although the application
  86.   * will receive a SAXParseException as the argument to the handlers
  87.   * in the ErrorHandler interface, the application is not actually
  88.   * required to throw the exception; instead, it can simply read the
  89.   * information in it and take a different action.</p>
  90.   *
  91.   * <p>Since this exception is a subclass of SAXException, it
  92.   * inherits the ability to wrap another exception.</p>
  93.   *
  94.   * @see SAXException#SAXException
  95.   * @see Locator#Locator
  96.   * @see ErrorHandler#ErrorHandler
  97.   */
  98. class SAX_EXPORT SAXParseException : public SAXException
  99. {
  100. public:
  101.     /** @name Constructors and Destructor */
  102.     //@{
  103.   /**
  104.     * Create a new SAXParseException from a message and a Locator.
  105.     *
  106.     * <p>This constructor is especially useful when an application is
  107.     * creating its own exception from within a DocumentHandler
  108.     * callback.</p>
  109.     *
  110.     * @param message The error or warning message.
  111.     * @param locator The locator object for the error or warning.
  112.     * @see Locator#Locator
  113.     * @see Parser#setLocale 
  114.     */
  115.     SAXParseException(const XMLCh* const message, const Locator& locator);
  116.   /**
  117.     * Create a new SAXParseException.
  118.     *
  119.     * <p>This constructor is most useful for parser writers.</p>
  120.     *
  121.     * <p>If the system identifier is a URL, the parser must resolve it
  122.     * fully before creating the exception.</p>
  123.     *
  124.     * @param message The error or warning message.
  125.     * @param publicId The public identifer of the entity that generated
  126.     *                 the error or warning.
  127.     * @param systemId The system identifer of the entity that generated
  128.     *                 the error or warning.
  129.     * @param lineNumber The line number of the end of the text that
  130.     *                   caused the error or warning.
  131.     * @param columnNumber The column number of the end of the text that
  132.     *                     caused the error or warning.
  133.     * @see Parser#setLocale
  134.     */
  135.     SAXParseException
  136.     (
  137.         const   XMLCh* const    message
  138.         , const XMLCh* const    publicId
  139.         , const XMLCh* const    systemId
  140.         , const unsigned int    lineNumber
  141.         , const unsigned int    columnNumber
  142.     );
  143.   /**
  144.     * Copy constructor
  145.     *
  146.     * @param toCopy The object to be copied
  147.     */
  148.     SAXParseException(const SAXParseException& toCopy);
  149.     /**
  150.       * Destructor
  151.       */
  152.     ~SAXParseException();
  153.     //@}
  154.     /** @name Assignment operator */
  155.     //@{
  156.    /**
  157.     * Assignment operator
  158.     *
  159.     * @param toAssign The object to be copied through assignment
  160.     *
  161.     */
  162.     SAXParseException& operator=(const SAXParseException& toAssign);
  163.     //@}
  164.     /** @name Getter methods */
  165.     //@{
  166.    /**
  167.     * The column number of the end of the text where the exception occurred.
  168.     *
  169.     * <p>The first column in a line is position 1.</p>
  170.     *
  171.     * @return An integer representing the column number, or -1
  172.     *         if none is available.
  173.     * @see Locator#getColumnNumber
  174.     */
  175.     unsigned int getColumnNumber() const;
  176.   /**
  177.     * The line number of the end of the text where the exception occurred.
  178.     *
  179.     * @return An integer representing the line number, or -1
  180.     *         if none is available.
  181.     * @see Locator#getLineNumber
  182.     */
  183.     unsigned int getLineNumber() const;
  184.   /**
  185.     * Get the public identifier of the entity where the exception occurred.
  186.     *
  187.     * @return A string containing the public identifier, or null
  188.     *         if none is available.
  189.     * @see Locator#getPublicId
  190.     */
  191.     const XMLCh* getPublicId() const;
  192.   /**
  193.     * Get the system identifier of the entity where the exception occurred.
  194.     *
  195.     * <p>If the system identifier is a URL, it will be resolved
  196.     * fully.</p>
  197.     *
  198.     * @return A string containing the system identifier, or null
  199.     *         if none is available.
  200.     * @see Locator#getSystemId
  201.     */
  202.     const XMLCh* getSystemId() const;
  203.     //@}
  204. private:
  205.     /* Data Members */
  206.     
  207.     /* The column in the source text where the error occured. */
  208.     unsigned int    fColumnNumber;
  209.     /* The line in the source text where the error occured. */
  210.     unsigned int    fLineNumber;
  211.     /* The public id of the file where the error occured. */
  212.     XMLCh*          fPublicId;
  213.     /* The system id of the file where the error occured. */
  214.     XMLCh*          fSystemId;
  215.     
  216. };
  217. #endif