Skip to content

Commit 5de7d1c

Browse files
committed
fix
1 parent b7006f7 commit 5de7d1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/errors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export class NodeNotFoundError extends Error {
22
constructor(context: string, options: { cause?: Error } = {}) {
3-
super(`Node not found: ${context}`);
3+
super(`Node not found: ${context}`, options);
44
this.name = "NodeNotFoundError";
55
}
66
}

0 commit comments

Comments
 (0)