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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: align_exception.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 18:02:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.14
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef ALGO_ALIGN_EXCEPTION__HPP
  10. #define ALGO_ALIGN_EXCEPTION__HPP
  11. /* $Id: align_exception.hpp,v 1000.1 2004/06/01 18:02:23 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:  Yuri Kapustin, Andrei Gourianov
  37. *
  38. * File Description:
  39. *   Algo library exceptions
  40. *
  41. */
  42. #include <corelib/ncbiexpt.hpp>
  43. /** @addtogroup AlgoAlignExcep
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. class NCBI_XALGOALIGN_EXPORT CAlgoAlignException : public CException
  49. {
  50. public:
  51.     enum EErrCode {
  52.         eInternal,
  53.         eBadParameter,
  54.         eMemoryLimit,
  55.         eInvalidCharacter,
  56.         eIncorrectSequenceOrder,
  57.         eInvalidSpliceTypeIndex,
  58. eNoData,
  59. eNotInitialized,
  60.         eFormat
  61.     };
  62.     virtual const char* GetErrCodeString(void) const {
  63.         switch ( GetErrCode() ) {
  64.         case eInternal:
  65.             return "Internal error";
  66.         case eBadParameter:
  67.             return "One or more parameters passed are invalid";
  68.         case eMemoryLimit:
  69.             return "Memory limit exceeded";
  70.         case eInvalidCharacter:
  71.             return "Sequence contains one or more invalid characters";
  72.         case eIncorrectSequenceOrder:
  73.             return "mRna should go first";
  74.         case eInvalidSpliceTypeIndex:
  75.             return "Splice type index out of range";
  76. case eNoData:
  77.     return "No data available";
  78.         case eNotInitialized:
  79.             return "Object not properly initialized";
  80.         case eFormat:
  81.             return "Unexpected format";
  82.         default:
  83.             return CException::GetErrCodeString();
  84.         }
  85.     }
  86.     NCBI_EXCEPTION_DEFAULT(CAlgoAlignException, CException);
  87. };
  88. END_NCBI_SCOPE
  89. /* @} */
  90. /*
  91.  * ===========================================================================
  92.  * $Log: align_exception.hpp,v $
  93.  * Revision 1000.1  2004/06/01 18:02:23  gouriano
  94.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.14
  95.  *
  96.  * Revision 1.14  2004/04/23 14:39:22  kapustin
  97.  * Add Splign librry and other changes
  98.  *
  99.  * Revision 1.10  2003/10/27 20:45:47  kapustin
  100.  * Minor code cleanup
  101.  *
  102.  * Revision 1.9  2003/09/30 19:49:32  kapustin
  103.  * Make use of standard score matrix interface
  104.  *
  105.  * Revision 1.8  2003/09/12 19:38:27  kapustin
  106.  * Add eNoData subtype
  107.  *
  108.  * Revision 1.7  2003/09/02 22:28:44  kapustin
  109.  * Get rid of CAlgoException
  110.  *
  111.  * Revision 1.5  2003/06/17 17:20:28  kapustin
  112.  * CNWAlignerException -> CAlgoAlignException
  113.  *
  114.  * Revision 1.4  2003/04/10 19:04:27  siyan
  115.  * Added doxygen support
  116.  *
  117.  * Revision 1.3  2003/03/25 22:07:09  kapustin
  118.  * Add eInvalidSpliceTypeIndex exception type
  119.  *
  120.  * Revision 1.2  2003/03/14 19:15:28  kapustin
  121.  * Add eMemoryLimit exception type
  122.  *
  123.  * Revision 1.1  2003/02/26 21:30:32  gouriano
  124.  * modify C++ exceptions thrown by this library
  125.  *
  126.  *
  127.  * ===========================================================================
  128.  */
  129. #endif  /* ALGO_ALIGN_EXCEPTION__HPP */