Lines Matching defs:Error
134 class Error : public std::exception {
136 Error() noexcept = default;
137 explicit Error(ErrorType type, const std::string_view &message) noexcept : type_(type), message_(message) {}
138 explicit Error(ErrorType type, const std::string_view &message, size_t line, size_t column) noexcept
142 ~Error() override = default;
143 DEFAULT_COPY_SEMANTIC(Error);
144 DEFAULT_MOVE_SEMANTIC(Error);
162 return "Error";
234 Error &GetError() noexcept
266 Error error_;