For use with unrecoverable errors. */
| 25 | For use with unrecoverable errors. |
| 26 | */ |
| 27 | inline void Make(std::string&& str) |
| 28 | { |
| 29 | Exception info; |
| 30 | info.Description = std::move(str); |
| 31 | |
| 32 | Print(info); |
| 33 | throw info; |
| 34 | } |
| 35 | |
| 36 | /* |
| 37 | For use with unrecoverable errors. |
no test coverage detected