| 54 | } |
| 55 | const char* what() const noexcept override; |
| 56 | Exception nest(const std::exception& exception) |
| 57 | { |
| 58 | m_message += " Cause:\n"; |
| 59 | m_message |
| 60 | += " " + Utils::String::replace(exception.what(), "\n", "\n "); |
| 61 | return *this; |
| 62 | } |
| 63 | }; |
| 64 | |
| 65 | inline const char* Exception::what() const noexcept |