blob: cdb5c2b2856cbefc58a8d3577043b4a4a153a97d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* This source code is released into the public domain.
*/
module;
#include <string>
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);
};
} // namespace nihil::ucl
|