| 4 | type GetRange<T> = {value: T; startHeight: number; endHeight?: number}; |
| 5 | |
| 6 | export class EntryNotFoundError extends Error { |
| 7 | constructor(height: number) { |
| 8 | super(`Entry not found at height ${height}`); |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected