generated from Sithas/conan_template
19 lines
311 B
C++
19 lines
311 B
C++
#include "exception409_conflict.h"
|
|
|
|
#include <boost/beast/core/error.hpp>
|
|
|
|
using namespace std;
|
|
using namespace std::literals;
|
|
|
|
namespace uad
|
|
{
|
|
exception409_conflict::exception409_conflict(const string& info): message_(info)
|
|
{
|
|
}
|
|
|
|
char const* exception409_conflict::what() const
|
|
{
|
|
return message_.c_str();
|
|
}
|
|
}
|