html_exception.hpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: html_exception.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/04/01 21:01:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef HTML___EXCEPTION__HPP
  10. #define HTML___EXCEPTION__HPP
  11. /*  $Id: html_exception.hpp,v 1000.2 2004/04/01 21:01:48 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Author:  Andrei Gourianov
  37.  *
  38.  */
  39. /// @file html_exception.hpp
  40. /// HTML library exceptions.
  41. ///
  42. /// Defines class to generate exceptions from the HTML library.
  43. #include <corelib/ncbiexpt.hpp>
  44. /** @addtogroup HTMLexpt
  45.  *
  46.  * @{
  47.  */
  48. BEGIN_NCBI_SCOPE
  49. /////////////////////////////////////////////////////////////////////////////
  50. ///
  51. /// CHTMLException --
  52. ///
  53. /// Define an extended exception class based on the CException
  54. ///
  55. /// CHTMLException inherits its basic functionality from CException and
  56. /// defines additional reporting capabilities.
  57. class NCBI_XHTML_EXPORT CHTMLException
  58.     : EXCEPTION_VIRTUAL_BASE public CException
  59. {
  60. public:
  61.     enum EErrCode {
  62.         eNullPtr,
  63.         eWrite,
  64.         eTextUnclosedTag,
  65.         eTableCellUse,
  66.         eTableCellType,
  67.         eTemplateAccess,
  68.         eTemplateTooBig,
  69.         eEndlessRecursion,
  70.         eUnknown
  71.     };
  72.     virtual const char* GetErrCodeString(void) const
  73.     {
  74.         switch ( GetErrCode() ) {
  75.         case eNullPtr:          return "eNullPtr";
  76.         case eWrite:            return "eWrite";
  77.         case eTextUnclosedTag:  return "eTextUnclosedTag";
  78.         case eTableCellUse:     return "eTableCellUse";
  79.         case eTableCellType:    return "eTableCellType";
  80.         case eTemplateAccess:   return "eTemplateAccess";
  81.         case eTemplateTooBig:   return "eTemplateTooBig";
  82.         case eEndlessRecursion: return "eEndlessRecursion";
  83.         case eUnknown:          return "eUnknown";
  84.         default:                return CException::GetErrCodeString();
  85.         }
  86.     }
  87.     /// Constructor.
  88.     CHTMLException(const char* file, int line,
  89.                    const CException* prev_exception, EErrCode err_code,
  90.                    const string& message)
  91.         throw()
  92.         : CException(file, line, prev_exception, CException::eInvalid,message)
  93.         NCBI_EXCEPTION_DEFAULT_IMPLEMENTATION(CHTMLException, CException);
  94. public:
  95.     /// Add node name to tracing path.
  96.     virtual void AddTraceInfo(const string& node_name);
  97.     /// Report node trace into the "out" stream.
  98.     virtual void ReportExtra(ostream& out) const;
  99. protected:
  100.     /// Helper method for copying exception data.
  101.     virtual void x_Assign(const CException& src);
  102. protected:
  103.     list<string>  m_Trace;  ///< Node trace list.
  104. };
  105. END_NCBI_SCOPE
  106. /* @} */
  107. /*
  108.  * ===========================================================================
  109.  * $Log: html_exception.hpp,v $
  110.  * Revision 1000.2  2004/04/01 21:01:48  gouriano
  111.  * PRODUCTION: UPGRADED [CORE_002] Dev-tree R1.5
  112.  *
  113.  * Revision 1.5  2004/03/10 20:15:18  ivanov
  114.  * + eEndlessRecursion
  115.  *
  116.  * Revision 1.4  2003/12/23 17:59:51  ivanov
  117.  * Added exception tracing. Moved code to separate .cpp file.
  118.  *
  119.  * Revision 1.3  2003/11/03 17:02:53  ivanov
  120.  * Some formal code rearrangement. Move log to end.
  121.  *
  122.  * Revision 1.2  2003/11/03 14:43:21  ivanov
  123.  * + eWrite
  124.  *
  125.  * Revision 1.1  2003/07/08 17:12:40  gouriano
  126.  * changed thrown exceptions to CException-derived ones
  127.  *
  128.  * ===========================================================================
  129.  */
  130. #endif  /* HTML___EXCEPTION__HPP */