jsf.js_next_gen
    Preparing search index...

    Interface AjaxError

    Data passed to ajax error callbacks.

    interface AjaxError {
        description?: string;
        errorMessage?: string;
        errorName?: string;
        responseCode?: number;
        responseText?: string;
        responseXML?: XMLDocument;
        serverErrorMessage?: string;
        serverErrorName?: string;
        source?: Element;
        status: "clientError" | "timeout" | AjaxErrorStatus;
        type: "error";
        typeDetails?: unknown;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string

    MyFaces compatibility detail.

    errorMessage?: string
    errorName?: string
    responseCode?: number
    responseText?: string
    responseXML?: XMLDocument
    serverErrorMessage?: string

    MyFaces compatibility alias.

    serverErrorName?: string

    MyFaces compatibility alias.

    source?: Element
    status: "clientError" | "timeout" | AjaxErrorStatus
    type: "error"
    typeDetails?: unknown

    MyFaces compatibility detail.