1 Star 4 Fork 0

jnxmjs/crow-frame

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
error_code.cpp 303 Bytes
一键复制 编辑 原始数据 按行查看 历史
jnxmjs 提交于 2020-10-10 17:10 . init upload
#include "error_code.h"
std::map<int, std::string> CError::m_errors = {
{0,"success"},
{5000, "Authentic Error"},
};
CError::CError(int code)
:m_code(code)
{
}
int CError::getCode() const
{
return m_code;
}
const std::string& CError::getMsg() const
{
return m_errors[m_code];
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/airlovelq/crow-frame.git
git@gitee.com:airlovelq/crow-frame.git
airlovelq
crow-frame
crow-frame
master

搜索帮助