| 37 | * so it has the same shape constraints as a repo name. |
| 38 | */ |
| 39 | export class InvalidSessionIdError extends ArtifactError { |
| 40 | constructor(sessionId: string, reason: string, options?: { cause?: unknown }) { |
| 41 | super("EINVALIDSESSION", `invalid session id '${sessionId}': ${reason}`, options); |
| 42 | this.name = "InvalidSessionIdError"; |
nothing calls this directly
no outgoing calls
no test coverage detected