| 5 | * Provides a common type for catching graph-specific errors. |
| 6 | */ |
| 7 | export class GraphError extends Error { |
| 8 | public constructor(message: string) { |
| 9 | super(message); |
| 10 | this.name = "GraphError"; |
nothing calls this directly
no outgoing calls
no test coverage detected