* @brief Constructor * * @param message A message to accompany the exception * @param json The json data being processed */
| 276 | * @param json The json data being processed |
| 277 | */ |
| 278 | InvalidJSONKey(std::string message, std::string json) |
| 279 | : ExceptionBase(message), json(json) { } |
| 280 | virtual ~InvalidJSONKey() noexcept {} |
| 281 | std::string py_message() const override { |
| 282 | std::string out_msg = m_message + |
nothing calls this directly
no outgoing calls
no test coverage detected