| 25 | * is otherwise unusable as the trailing segment of a scoped name. |
| 26 | */ |
| 27 | export class InvalidRepoNameError extends ArtifactError { |
| 28 | constructor(name: string, reason: string, options?: { cause?: unknown }) { |
| 29 | super("EINVALIDNAME", `invalid repository name '${name}': ${reason}`, options); |
| 30 | this.name = "InvalidRepoNameError"; |
nothing calls this directly
no outgoing calls
no test coverage detected