/* * This source code is released into the public domain. */ module; #include #include export module nihil.ucl:error; import nihil; namespace nihil::ucl { /* * Exception thrown when an issue occurs with UCL. */ export struct error : generic_error { template error(std::format_string fmt, Args &&...args) : generic_error(fmt, std::forward(args)...) {} }; } // namespace nihil::ucl