Interface SpaceError

An error from a space operation, carrying a machine-readable code.

interface SpaceError {
    code:
        | "timeout"
        | "cancelled"
        | "forbidden"
        | "unknown"
        | "auth-required"
        | "not-found"
        | "unsupported-scheme";
    message: string;
    name: string;
    stack?: string;
}

Hierarchy

  • Error
    • SpaceError

Properties

Properties

code:
    | "timeout"
    | "cancelled"
    | "forbidden"
    | "unknown"
    | "auth-required"
    | "not-found"
    | "unsupported-scheme"
message: string
name: string
stack?: string