Lines Matching defs:Error
166 class Error : public std::exception {
168 Error() noexcept = default;
169 explicit Error(ErrorType type, std::string_view file, std::string_view message) noexcept
173 explicit Error(ErrorType type, std::string_view file, std::string_view message, size_t line, size_t column) noexcept
177 ~Error() override = default;
178 DEFAULT_COPY_SEMANTIC(Error);
179 DEFAULT_MOVE_SEMANTIC(Error);
199 return "Error";
258 const Error &GetError() const noexcept
273 Error error_;