| 3871 | namespace Catch { |
| 3872 | |
| 3873 | class GeneratorException : public std::exception { |
| 3874 | const char* const m_msg = ""; |
| 3875 | |
| 3876 | public: |
| 3877 | GeneratorException(const char* msg): |
| 3878 | m_msg(msg) |
| 3879 | {} |
| 3880 | |
| 3881 | const char* what() const noexcept override final; |
| 3882 | }; |
| 3883 | |
| 3884 | namespace Generators { |
| 3885 |
no outgoing calls
no test coverage detected