Interface WretchError

An Error enhanced with status, text and body.

interface WretchError {
    json?: any;
    message: string;
    name: string;
    response: WretchResponse;
    stack?: string;
    status: number;
    text?: string;
    url: string;
}

Hierarchy

  • Error
    • WretchError

Properties

json?: any
message: string
name: string
response: WretchResponse
stack?: string
status: number
text?: string
url: string