(message: string)
| 1 | export class CancelError extends Error { |
| 2 | constructor(message: string) { |
| 3 | super(message) |
| 4 | this.name = 'CancelError' |
| 5 | } |
| 6 | |
| 7 | public get isCancelled(): boolean { |
| 8 | return true |
nothing calls this directly
no outgoing calls
no test coverage detected