menu

PathError

import { PathError } from "destack:error";

I/O failure attached to a path operation.

language/library/src/error/io.ds:80:89
1export struct PathError {2    operation: string;3    path: string;4    error: IoError;5}

Members

operation: string

Operation being performed.

path: string

Path involved in the operation.

error: IoError

I/O failure from the operation.