/* * This source code is released into the public domain. */ module; #include #include export module nihil.config:error; import nihil; namespace nihil::config { /* * Exception thrown when an issue occurs with the configuration. */ export struct error : generic_error { error(std::string what) : generic_error(std::move(what)) {} }; } // namespace nihil::config