FetchError interface

Error type for fetch function in BackendSrv

Signature

  1. export interface FetchError<T = any>

Import

  1. import { FetchError } from '@grafana/runtime';

Properties

PropertyTypeDescription
cancelledboolean
configBackendSrvRequest
dataT
isHandledboolean
statusnumber
statusTextstring

cancelled property

Signature

  1. cancelled?: boolean;

config property

Signature

  1. config: BackendSrvRequest;

data property

Signature

  1. data: T;

isHandled property

Signature

  1. isHandled?: boolean;

status property

Signature

  1. status: number;

statusText property

Signature

  1. statusText?: string;