Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 493 Bytes

kibana-plugin-core-server.responseerror.md

File metadata and controls

16 lines (11 loc) · 493 Bytes

Home > kibana-plugin-core-server > ResponseError

ResponseError type

Error message and optional data send to the client in case of error.

Signature:

export declare type ResponseError = string | Error | {
    message: string | Error;
    attributes?: ResponseErrorAttributes;
};