| 1 | // Error for when a graph with a specific UUID is not found |
| 2 | export class GraphNotFoundError extends Error { |
| 3 | constructor(message: string = "Graph not found") { |
| 4 | super(message); |
| 5 | this.name = "GraphNotFoundError"; |
nothing calls this directly
no outgoing calls
no test coverage detected