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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: seqalign_exception.hpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 19:30:43  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: seqalign_exception.hpp,v 1000.2 2004/06/01 19:30:43 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author: Philip Johnson
  35.  *
  36.  * File Description: CSeqalignException class
  37.  *
  38.  */
  39. #ifndef OBJECTS_SEQALIGN_SEQALIGN_EXCEPTION_HPP
  40. #define OBJECTS_SEQALIGN_SEQALIGN_EXCEPTION_HPP
  41. #include <corelib/ncbiexpt.hpp>
  42. BEGIN_NCBI_SCOPE
  43. BEGIN_SCOPE(objects) // namespace ncbi::objects::
  44. class NCBI_SEQALIGN_EXPORT CSeqalignException :
  45.     EXCEPTION_VIRTUAL_BASE public CException
  46. {
  47. public:
  48.     enum EErrCode {
  49.         eUnsupported,
  50.         eInvalidAlignment,
  51.         eInvalidInputAlignment,
  52.         eInvalidRowNumber,
  53.         eOutOfRange,
  54.         eInvalidInputData
  55.     };
  56.     virtual const char* GetErrCodeString(void) const
  57.     {
  58.         switch (GetErrCode()) {
  59.         case eUnsupported:           return "eUnsupported";
  60.         case eInvalidAlignment:      return "eInvalidAlignment";
  61.         case eInvalidInputAlignment: return "eInvalidInputAlignment";
  62.         case eInvalidRowNumber:      return "eInvalidRowNumber";
  63.         case eOutOfRange:            return "eOutOfRange";
  64.         case eInvalidInputData:      return "eInvalidInputData";
  65.         default:                     return CException::GetErrCodeString();
  66.         }
  67.     }
  68.     NCBI_EXCEPTION_DEFAULT(CSeqalignException, CException);
  69. };
  70. END_SCOPE(objects)
  71. END_NCBI_SCOPE
  72. /*
  73. * ===========================================================================
  74. *
  75. * $Log: seqalign_exception.hpp,v $
  76. * Revision 1000.2  2004/06/01 19:30:43  gouriano
  77. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.6
  78. *
  79. * Revision 1.6  2004/04/27 19:20:23  johnson
  80. * {BEGIN,END}_objects_SCOPE not defined by includes; replaced with
  81. * {BEGIN,END}_SCOPE(objects)
  82. *
  83. * Revision 1.5  2003/11/04 14:45:54  todorov
  84. * +eInvalidInputData
  85. *
  86. * Revision 1.4  2003/09/16 15:31:59  todorov
  87. * Added validation methods. Added seq range methods
  88. *
  89. * Revision 1.3  2003/08/26 20:28:38  johnson
  90. * added 'SwapRows' method
  91. *
  92. * Revision 1.2  2003/08/19 21:09:39  todorov
  93. * +eInvalidInputAlignment
  94. *
  95. * Revision 1.1  2003/08/13 18:11:03  johnson
  96. * initial revision; created so CSeq_align::Reverse can throw if asked to
  97. * reverse an (as yet) unsupported segment type
  98. *
  99. *
  100. * ===========================================================================
  101. */
  102. #endif // OBJECTS_SEQALIGN_SEQALIGN_EXCEPTION_HPP