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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: doc_exception.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 20:20:28  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___DOC_EXCEPTION__HPP
  10. #define GUI_CORE___DOC_EXCEPTION__HPP
  11. /*  $Id: doc_exception.hpp,v 1000.0 2003/10/31 20:20:28 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.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *    Exception class for the documents
  40.  */
  41. #include <corelib/ncbiexpt.hpp>
  42. BEGIN_NCBI_SCOPE
  43. //
  44. // Class CDocException is a CException-derived class used for standard
  45. // error reporting in the GBENCH framework.  This class defines exceptions
  46. // related to document management and data loading.
  47. //
  48. class NCBI_GUICORE_EXPORT CDocException : EXCEPTION_VIRTUAL_BASE public CException
  49. {
  50. public:
  51.     // Enumerated list of document management errors
  52.     enum EErrCode {
  53.         eFileNotFound,
  54.         eInvalidFileType,
  55.         eLoadFailed,
  56.         eMemoryError,
  57.         eObjectManagerError,
  58.         eRecordNotFound,
  59.         eVersionMismatch
  60.     };
  61.     // Translate the specific error code into a string representations of
  62.     // that error code.
  63.     virtual const char* GetErrCodeString(void) const
  64.     {
  65.         switch (GetErrCode()) {
  66.         case eFileNotFound:         return "eFileNotFound";
  67.         case eInvalidFileType:      return "eInvalidFileType";
  68.         case eMemoryError:          return "eMemoryError";
  69.         case eObjectManagerError:   return "eObjectManagerError";
  70.         case eRecordNotFound:       return "eRecordNotFound";
  71.         case eVersionMismatch:      return "eVersionMismatch";
  72.         default:                    return CException::GetErrCodeString();
  73.         }
  74.     }
  75.     NCBI_EXCEPTION_DEFAULT(CDocException, CException);
  76. };
  77. END_NCBI_SCOPE
  78. #endif  // GUI_CORE___DOC_EXCEPTION__HPP
  79. /*
  80.  * ===========================================================================
  81.  * $Log: doc_exception.hpp,v $
  82.  * Revision 1000.0  2003/10/31 20:20:28  gouriano
  83.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.7
  84.  *
  85.  * Revision 1.7  2003/09/29 15:20:06  dicuccio
  86.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  87.  *
  88.  * Revision 1.6  2003/01/13 13:11:41  dicuccio
  89.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  90.  * Moved all FLUID-generated code into namespace ncbi.
  91.  *
  92.  * Revision 1.5  2002/12/19 18:13:02  dicuccio
  93.  * Added export specifiers for Win32.
  94.  *
  95.  * Revision 1.4  2002/12/09 13:34:03  dicuccio
  96.  * Added documentation
  97.  *
  98.  * Revision 1.3  2002/11/29 15:51:35  dicuccio
  99.  * Moved constructor macro to bottom of class per coding standard
  100.  *
  101.  * Revision 1.2  2002/11/07 18:20:12  dicuccio
  102.  * Moved #ifdef to top of file.
  103.  *
  104.  * Revision 1.1  2002/11/04 21:09:05  dicuccio
  105.  * Initial revision
  106.  *
  107.  * ===========================================================================
  108.  */