MCPcopy Create free account
hub / github.com/apache/maka / isNotFoundError

Function isNotFoundError

packages/runtime/src/session-manager.ts:6200–6202  ·  view source on GitHub ↗
(error: unknown)

Source from the content-addressed store, hash-verified

6198}
6199
6200function isNotFoundError(error: unknown): error is NodeJS.ErrnoException {
6201 return error instanceof Error && 'code' in error && error.code === 'ENOENT';
6202}
6203
6204function sameSubagentWorkspace(
6205 left: SubagentWorkspaceBinding | undefined,

Callers 6

resolveShellRunOwnerMethod · 0.70
findChildRunForOutputMethod · 0.70
isMissingRunErrorFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected