generated from Sithas/conan_template
17 lines
251 B
C++
17 lines
251 B
C++
#pragma once
|
|
|
|
#include <exception>
|
|
#include <string>
|
|
|
|
namespace uad
|
|
{
|
|
struct exception409_conflict : std::exception
|
|
{
|
|
private:
|
|
std::string message_;
|
|
public:
|
|
exception409_conflict(const std::string& info);
|
|
char const* what() const override;
|
|
};
|
|
}
|