| 35 | * a 404 by the API. |
| 36 | */ |
| 37 | export class SectionNotFoundError extends Error { |
| 38 | constructor(public heading: string) { |
| 39 | super(`Section heading not found: ${heading}`); |
| 40 | this.name = 'SectionNotFoundError'; |
nothing calls this directly
no outgoing calls
no test coverage detected