#pragma once #include #include namespace uad { struct exception409_conflict : std::exception { private: std::string message_; public: exception409_conflict(const std::string& info); char const* what() const override; }; }