blob: c6a0f2da156b6f686953dc49a5d2fc6336f14056 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* This source code is released into the public domain.
*/
module;
#include <format>
#include <utility>
export module nihil.ucl:error;
import nihil;
namespace nihil::ucl {
/*
* Exception thrown when an issue occurs with UCL.
*/
export struct error : generic_error {
error(std::string what) : generic_error(std::move(what)) {}
};
} // namespace nihil::ucl
|