0.4.3
ClientException.h
浏览该文件的文档.
1//
2// Created by ALSON08 on 2022/6/28.
3//
4
5#ifndef ALSON_COMMUNICATION_CLIENT_CLIENT_EXCEPTION_H
6#define ALSON_COMMUNICATION_CLIENT_CLIENT_EXCEPTION_H
7
8
9// std
10#include <string>
11
12// alson
14
15
16namespace ALSON {
17
18
31
32public:
33 ClientException(uint64_t code, const std::string& message, uint64_t line = 0, const std::string& filename = "")
34 : CommonException(code, message, line, filename) {}
35 ClientException(ClientException& cause, uint64_t code, const std::string& message, uint64_t line = 0, const std::string& filename = "")
36 : CommonException(cause, code, message, line, filename) {}
37 ClientException(std::exception& cause, uint64_t code, const std::string& message, uint64_t line = 0, const std::string& filename = "")
38 : CommonException(cause, code, message, line, filename) {}
39};
40
41
42} // namespace ALSON
43
44
45#endif // !ALSON_COMMUNICATION_CLIENT_CLIENT_EXCEPTION_H
ClientException(std::exception &cause, uint64_t code, const std::string &message, uint64_t line=0, const std::string &filename="")
ClientException(ClientException &cause, uint64_t code, const std::string &message, uint64_t line=0, const std::string &filename="")
ClientException(uint64_t code, const std::string &message, uint64_t line=0, const std::string &filename="")
#define ALSON_API
My Custom Doxygen Footer
Data Processing Programmer's Guide 0.4.3
Copyright © 2014-2024 Henan Alson Intelligent Technology Co, Ltd 河南埃尔森智能科技有限公司 版权所有 豫ICP备15002212号