variantexception.h

来自「The goal of this library is to make ODBC」· C头文件 代码 · 共 22 行

H
22
字号
#ifndef _VARIANT_EXCEPTION_H
#define _VARIANT_EXCEPTION_H

#include "DB_Base.h"
#include "RootException.h"

BEGIN_DTL_NAMESPACE

// exception class when something goes wrong in Variants
class VariantException : public RootException
{
public:
	VariantException(const string &meth, const string &msg) :
	  RootException(meth, msg, "VariantException") { }

	// superclass behavior ok for what()
};

END_DTL_NAMESPACE

#endif

⌨️ 快捷键说明

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