Phials plugin documentation
User guide
AI Disclosure: This page was generated by an LLM and may contain inaccuracies. Hand-crafted documentation will be implemented over time on the road to 1.0

PluginFileError

Since Plugin API: 1.0.0

Stable operational failure exposed by public filesystem operations.

Signature

declare class PluginFileError extends Error {
    readonly name: "PluginFileError";
    readonly code: PluginFileErrorCode;
    readonly path?: string;
    constructor(code: PluginFileErrorCode, message: string, options?: {
        path?: string;
        cause?: unknown;
    });
}