propertiesexception.h
来自「一些unix下的c/c++的util包」· C头文件 代码 · 共 20 行
H
20 行
#ifndef _PROPERTIESEXCEPTION_H_
#define _PROPERTIESEXCEPTION_H_
#include "nlkit/NLException.h"
namespace nlkit
{
class PropertiesException : public NLException
{
public :
PropertiesException(const char* file, int line, const std::string& msg)
:NLException(file, line, msg)
{
}
virtual const char* name() const { return "nlkit::PropertiesException"; }
virtual void print( std::ostream & os) const;
};
}
#endif //_PROPERTIESEXCEPTION_H_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?