30 template<
typename FirstArg,
typename... Args>
31 parse_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
46 template<
typename FirstArg,
typename... Args>
47 operation_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
64 template<
typename FirstArg,
typename... Args>
65 io_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
66 io_error(fmt::format(fmt, arg1, args...))
75 template<
typename FirstArg,
typename... Args>
76 gui_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
77 gui_error(fmt::format(fmt, arg1, args...))
86 template<
typename FirstArg,
typename... Args>
87 key_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
88 key_error(fmt::format(fmt, arg1, args...))
97 template<
typename FirstArg,
typename... Args>
98 url_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
99 url_error(fmt::format(fmt, arg1, args...))
112 template<
typename FirstArg,
typename... Args>
113 cancel_error(std::string_view fmt, FirstArg
const &arg1, Args
const &...args) noexcept :
114 url_error(fmt::format(fmt, arg1, args...))
Exception thrown during parsing on an error.
Definition exception.hpp:26
Exception thrown during execution of a dynamic operation.
Definition exception.hpp:42
Exception thrown during I/O on an error.
Definition exception.hpp:60
Definition exception.hpp:71
Definition exception.hpp:82
Definition exception.hpp:93
Cancel error is caused by user pressing cancel.
Definition exception.hpp:108