@datapos/datapos-shared
    Preparing search index...

    Interface SerialisedError

    Serializable representation of an error and its cause chain. Used for logging, reporting, and transport across process or network boundaries.

    interface SerialisedError {
        body: string | undefined;
        componentName: string | undefined;
        info: string | undefined;
        locator: string;
        message: string;
        name: string;
        stack: string | undefined;
    }
    Index

    Properties

    body: string | undefined

    HTTP response body (Fetch errors only).

    componentName: string | undefined

    Vue component name (Vue errors only).

    info: string | undefined

    Vue error info string.

    locator: string

    Logical source of the error.

    message: string

    Human-readable error message.

    name: string

    Error class or type name.

    stack: string | undefined

    Stack trace, if available.