Interface RequestEditError

An error from requestEdit, carrying a machine-readable .code.

interface RequestEditError {
    code:
        | "invalid-params"
        | "forbidden"
        | "unknown"
        | "read-only"
        | "not-found"
        | "no-target";
    message: string;
    name: string;
    stack?: string;
}

Hierarchy

  • Error
    • RequestEditError

Properties

Properties

code:
    | "invalid-params"
    | "forbidden"
    | "unknown"
    | "read-only"
    | "not-found"
    | "no-target"
message: string
name: string
stack?: string