texception.h

来自「Oracle OCI的C++类的一个封装」· C头文件 代码 · 共 20 行

H
20
字号
#ifndef _T_EXCEPTION_H_
#define _T_EXCEPTION_H_

#include <string>

using namespace std;

class TException{
public:
	TException(){m_strErrMsg="Unknow Exception";};
	TException(const char * fmt, ...);
	TException(const string strErrMsg);
	virtual char * GetErrMsg() const;
private:
	string  m_strErrMsg;
};


#endif //_T_EXCEPTION_H_

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?