Error related to network/connection issues
| 61 | |
| 62 | /// Error related to network/connection issues |
| 63 | class NetworkError : public AIError { |
| 64 | public: |
| 65 | explicit NetworkError(const std::string& message) |
| 66 | : AIError("Network error: " + message) {} |
| 67 | }; |
| 68 | |
| 69 | /// Error related to invalid model or unsupported operations |
| 70 | class ModelError : public AIError { |
nothing calls this directly
no outgoing calls
no test coverage detected