(message: string)
| 554 | /** Error class for non-retriable upload failures */ |
| 555 | class UploadNonRetriableError extends Error { |
| 556 | constructor(message: string) { |
| 557 | super(message) |
| 558 | this.name = 'UploadNonRetriableError' |
| 559 | } |
| 560 | } |
| 561 | |
| 562 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected