(method: string, path: string)
| 90 | } |
| 91 | |
| 92 | const notFound = (method: string, path: string) => |
| 93 | new Error.SystemError({ |
| 94 | module: "FileSystem", |
| 95 | method, |
| 96 | reason: "NotFound", |
| 97 | description: "No such file or directory", |
| 98 | pathOrDescriptor: path |
| 99 | }) |
| 100 | |
| 101 | /** @internal */ |
| 102 | export const makeNoop = ( |
no outgoing calls
no test coverage detected