28namespace util::config {
37 Error(std::string err) : error{std::move(err)}
47 Error(std::string_view key, std::string_view err)
49 fmt::format(
"{} {}", key, err),
Displays the different errors when parsing user config.
Definition Error.hpp:31
Error(std::string err)
Constructs an Error with a custom error message.
Definition Error.hpp:37
Error(std::string_view key, std::string_view err)
Constructs an Error with a custom error message.
Definition Error.hpp:47