(status, error, message, headers)
| 68950 | NotFoundError: () => NotFoundError, |
| 68951 | PermissionDeniedError: () => PermissionDeniedError, |
| 68952 | RateLimitError: () => RateLimitError, |
| 68953 | UnprocessableEntityError: () => UnprocessableEntityError |
| 68954 | }); |
| 68955 | var AnthropicError = class extends Error { |
| 68956 | }; |
| 68957 | var APIError = class _APIError extends AnthropicError { |
| 68958 | constructor(status, error, message, headers) { |
| 68959 | super(`${_APIError.makeMessage(status, error, message)}`); |
| 68960 | this.status = status; |
nothing calls this directly
no test coverage detected