| 27 | |
| 28 | public: |
| 29 | APIError(int status_code, const std::string& message) |
| 30 | : AIError("API Error (" + std::to_string(status_code) + "): " + message), |
| 31 | status_code_(status_code) {} |
| 32 | |
| 33 | int status_code() const { return status_code_; } |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected