⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 texception.h

📁 Oracle OCI的C++类的一个封装
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -