| 3503 | namespace Catch { |
| 3504 | |
| 3505 | class GeneratorException : public std::exception { |
| 3506 | const char* const m_msg = ""; |
| 3507 | |
| 3508 | public: |
| 3509 | GeneratorException(const char* msg): |
| 3510 | m_msg(msg) |
| 3511 | {} |
| 3512 | |
| 3513 | const char* what() const noexcept override final; |
| 3514 | }; |
| 3515 | |
| 3516 | namespace Generators { |
| 3517 |
no outgoing calls
no test coverage detected