// // Created by zhaohe on 19-5-21. // #pragma once #include #include #include #include #include #include #include #include #include #include // #include // #include "zwtimecpp/core/base/object.hpp" namespace iflytop { namespace core { using namespace std; class zexception : public std::exception { public: string m_description; string m_what; zexception(string description); virtual ~zexception(); const char *what() const _GLIBCXX_USE_NOEXCEPT; }; } // namespace core } // namespace iflytop