Добавлены структуры исключений

This commit is contained in:
Антон
2025-09-29 07:30:02 +03:00
parent 4eaf6ab2a1
commit 3db3778789
5 changed files with 72 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#pragma once
#include <exception>
#include <string>
namespace uad
{
struct exception400_bad_request : std::exception
{
private:
std::string message_;
public:
exception400_bad_request(const std::string& info);
char const* what() const override;
};
}