| 40 | |
| 41 | Error::Error() = default; |
| 42 | Error::Error(StringBox message) : Error(std::move(message), StringBox(), nullptr) {} |
| 43 | Error::Error(const std::string_view& message) : Error(StringCache::getGlobal().makeString(message)) {} |
| 44 | Error::Error(const char* message) : Error(STRING_LITERAL(message), StringBox(), nullptr) {} |
| 45 | Error::Error(StringBox message, StringBox stackTrace, const Error* cause) |
nothing calls this directly
no test coverage detected