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(std::format(fmt, arg1, args...))
81 template<
typename FirstArg,
typename... Args>
82 os_error(std::string_view fmt, FirstArg
const &arg1, Args
const &...args) noexcept :
os_error(std::format(fmt, arg1, args...))
91 template<
typename FirstArg,
typename... Args>
92 gui_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
93 gui_error(std::format(fmt, arg1, args...))
102 template<
typename FirstArg,
typename... Args>
103 key_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
104 key_error(std::format(fmt, arg1, args...))
113 template<
typename FirstArg,
typename... Args>
114 url_error(std::string_view fmt, FirstArg
const &arg1, Args
const &... args) noexcept :
115 url_error(std::format(fmt, arg1, args...))
128 template<
typename FirstArg,
typename... Args>
129 cancel_error(std::string_view fmt, FirstArg
const &arg1, Args
const &...args) noexcept :
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
Exception thrown during an operating system call.
Definition exception.hpp:77
Definition exception.hpp:87
Definition exception.hpp:98
Definition exception.hpp:109
Cancel error is caused by user pressing cancel.
Definition exception.hpp:124