| 10 | readonly details?: unknown, |
| 11 | ) { |
| 12 | super(message); |
| 13 | this.name = new.target.name; |
| 14 | this.retryable = retryable; |
| 15 | Object.setPrototypeOf(this, new.target.prototype); |
| 16 | } |
| 17 | } |
| 18 | |
| 19 | export class AuthError extends CmdopError {} |
| 20 | export class PermissionError extends CmdopError {} |
| 21 | export class NotFoundError extends CmdopError {} |
| 22 | export class ConflictError extends CmdopError {} |
| 23 | export class ValidationError extends CmdopError {} |
| 24 | export class RateLimitError extends CmdopError {} |
| 25 | export class ServerError extends CmdopError {} |
| 26 | export class ConnectionError extends CmdopError {} |
| 27 | export class TimeoutError extends ConnectionError {} |
| 28 | export class UnavailableError extends CmdopError {} |
| 29 | export class UnsupportedError extends CmdopError {} |
| 30 | export class ProtocolError extends CmdopError {} |
| 31 | export class AgentStreamError extends CmdopError {} |
nothing calls this directly
no outgoing calls
no test coverage detected