Interface HttpError

interface HttpError {
    message: string;
    response?: any;
    status: HttpStatusCode;
}

Properties

message: string

Error message

response?: any

Body of the error repsonse

status: HttpStatusCode

HTTP Error code of the message