/* * 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 { template error(std::format_string fmt, Args &&...args) : generic_error(fmt, std::forward(args)...) {} }; } // namespace nihil::config