summaryrefslogtreecommitdiff
path: root/universe/src/NotFound.cpp
blob: ded8ff41f383f4ad066d97ae52def2c80a1f2755 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#include <kurator/universe/NotFound.h>

#include <string>
#include <utility>


namespace kurator
{
namespace universe
{


NotFound::NotFound(std::string _id) :
	id {std::move(_id)}
{
}


const char*
NotFound::what() const noexcept
{
	return id.c_str();
}


}  // namespace universe
}  // namespace kurator