Warning, file /include/catch2/generators/catch_generator_exception.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008 #ifndef CATCH_GENERATOR_EXCEPTION_HPP_INCLUDED
0009 #define CATCH_GENERATOR_EXCEPTION_HPP_INCLUDED
0010
0011 #include <exception>
0012
0013 namespace Catch {
0014
0015
0016
0017
0018 class GeneratorException : public std::exception {
0019 const char* const m_msg = "";
0020
0021 public:
0022 GeneratorException(const char* msg):
0023 m_msg(msg)
0024 {}
0025
0026 const char* what() const noexcept override final;
0027 };
0028
0029 }
0030
0031 #endif