📄 cppcms_error.h
字号:
#ifndef CPPCMS_ERROR_H#define CPPCMS_ERROR_H#include <string>#include <stdexcept>namespace cppcms {class cppcms_error : public std::runtime_error { std::string strerror(int err);public: cppcms_error(int err,std::string const &error); cppcms_error(std::string const &error) : std::runtime_error(error) {};};}#endif /* _HTTP_ERROR_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -