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