| 17 | class AIError : public std::runtime_error { |
| 18 | public: |
| 19 | explicit AIError(const std::string& message) : std::runtime_error(message) {} |
| 20 | explicit AIError(const char* message) : std::runtime_error(message) {} |
| 21 | }; |
| 22 |
nothing calls this directly
no outgoing calls
no test coverage detected