25 template<
typename FirstArg,
typename... Args>
26 parse_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
41 template<
typename FirstArg,
typename... Args>
42 operation_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
52 template<
typename FirstArg,
typename... Args>
53 io_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
54 io_error(fmt::format(fmt, arg1, args...))
63 template<
typename FirstArg,
typename... Args>
64 gui_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
65 gui_error(fmt::format(fmt, arg1, args...))
74 template<
typename FirstArg,
typename... Args>
75 key_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
76 key_error(fmt::format(fmt, arg1, args...))
85 template<
typename FirstArg,
typename... Args>
86 url_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
87 url_error(fmt::format(fmt, arg1, args...))
Exception thrown during parsing on an error.
Definition exception.hpp:21
Exception thrown during execution of a dynamic operation.
Definition exception.hpp:37
Definition exception.hpp:48
Definition exception.hpp:59
Definition exception.hpp:70
Definition exception.hpp:81