// This source code is released into the public domain. export module nihil.cli:usage_error; import nihil.std; import nihil.core; 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