| 56 | class ConfigurationError : public AIError { |
| 57 | public: |
| 58 | explicit ConfigurationError(const std::string& message) |
| 59 | : AIError("Configuration error: " + message) {} |
| 60 | }; |
| 61 | |
| 62 | /// Error related to network/connection issues |
nothing calls this directly
no outgoing calls
no test coverage detected