4 Star 8 Fork 2

樊智慧/faceHttpd

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
exception.h 667 Bytes
一键复制 编辑 原始数据 按行查看 历史
樊智慧 提交于 2019-07-17 14:12 +08:00 . 局部优化
/*************************************************************************
> File Name: exception.h
> Author: fanzhihui
> Mail: 953106194@qq.com
> Created Time: 2019年07月16日 星期二 18时19分45秒
************************************************************************/
#ifndef _FHTTP_COMMON_EXCEPTION_H_
#define _FHTTP_COMMON_EXCEPTION_H_
#include <string>
#include <exception>
using namespace std;
class JsonFormatException : public std::exception
{
public:
JsonFormatException(const std::string& text){
txt = text;
}
const char* what() const noexcept override {
return txt.c_str();
}
private:
std::string txt;
};
#endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/wisefan/faceHttpd.git
git@gitee.com:wisefan/faceHttpd.git
wisefan
faceHttpd
faceHttpd
20190718

搜索帮助