(message?: string)
| 78 | */ |
| 79 | export class IndexError extends Error { |
| 80 | constructor(message?: string) { |
| 81 | super(message); |
| 82 | // Set the prototype explicitly. |
| 83 | Object.setPrototypeOf(this, IndexError.prototype); |
| 84 | } |
| 85 | } |
nothing calls this directly
no outgoing calls
no test coverage detected