You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
644 B

2 years ago
2 years ago
  1. //
  2. // Created by zhaohe on 19-5-21.
  3. //
  4. #pragma once
  5. #include <fstream>
  6. #include <iostream>
  7. #include <list>
  8. #include <map>
  9. #include <memory>
  10. #include <set>
  11. #include <sstream>
  12. #include <string>
  13. #include <thread>
  14. #include <vector>
  15. // #include <zwtimecpp/core/base/interlog/simple_logger.hpp>
  16. // #include "zwtimecpp/core/base/object.hpp"
  17. namespace iflytop {
  18. namespace core {
  19. using namespace std;
  20. class zexception : public std::exception {
  21. public:
  22. string m_description;
  23. string m_what;
  24. zexception(string description);
  25. virtual ~zexception();
  26. const char *what() const _GLIBCXX_USE_NOEXCEPT;
  27. };
  28. } // namespace core
  29. } // namespace iflytop