📄 propertiesexception.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -