ADOException.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:0k
源码类别:

网格计算

开发平台:

Visual C++

  1. #ifndef _ADO_EXCEPTION_H
  2. #define _ADO_EXCEPTION_H
  3. class CADOException : public CADOObject
  4. {
  5. public:
  6. CADOException(LPCSTR lpszFuncName, LPCSTR lpszDescription)
  7. {
  8. m_sFunctionName = m_sFunctionName;
  9. m_sDescription  = lpszDescription;
  10. }
  11. //----------------------------------------------------------
  12. virtual ~CADOException()
  13. {
  14. m_sDescription.erase();
  15. m_sFunctionName.erase();
  16. }
  17. protected:
  18. string m_sFunctionName,
  19. m_sDescription;
  20. };
  21. #endif //_ADO_EXCEPTION_H