| 46 | * Surfaced as a 404 by the API. |
| 47 | */ |
| 48 | export class BlockNotFoundError extends Error { |
| 49 | constructor(public blockId: string) { |
| 50 | super(`Block anchor not found: ^${blockId}`); |
| 51 | this.name = 'BlockNotFoundError'; |
nothing calls this directly
no outgoing calls
no test coverage detected