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

📄 propertiesexception.h

📁 一些unix下的c/c++的util包
💻 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 + -