unlogic
Loading...
Searching...
No Matches
Error.h
Go to the documentation of this file.
1#ifndef UNLOGIC_ERROR_H
2#define UNLOGIC_ERROR_H
3
4#include <string>
5
6namespace unlogic
7{
8 struct Error
9 {
10 std::string message;
11
12 Error(std::string message) : message(std::move(message)) {}
13 };
14} // namespace unlogic
15
16#endif // UNLOGIC_ERROR_H
std::string message
Definition Error.h:10
Error(std::string message)
Definition Error.h:12