blob: 8502755562737e56db4603157e535400da0bc171 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// This source code is released into the public domain.
export module nihil.cli:usage_error;
import nihil.std;
import nihil.util;
namespace nihil {
// Exception thrown to indicate invalid command-line arguments.
export struct usage_error : error {
explicit usage_error(std::string_view what) : error(what) {}
};
} // namespace nihil
|