| 110 | } |
| 111 | |
| 112 | Error Error::rethrow(const StringBox& message) const { |
| 113 | return Error(message, StringBox(), this); |
| 114 | } |
| 115 | |
| 116 | Error Error::rethrow(std::string_view messagePrefix) const { |
| 117 | return Error(StringCache::getGlobal().makeString(messagePrefix), StringBox(), this); |