Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UnexpectedResponseError

import { UnexpectedResponseError } from "https://raw.githubusercontent.com/takker99/deno-gyazo/0.1.2/mod.ts";
class UnexpectedResponseError extends Error {
constructor(init: {
status: number;
statusText: string;
body: string;
path: URL;
}
);
body: string;
name: string;
path: URL;
status: number;
statusText: string;
}

§Extends

§
Error
[src]

§Constructors

§
new UnexpectedResponseError(init: {
status: number;
statusText: string;
body: string;
path: URL;
}
)
[src]

§Properties

§
body: string
[src]
§
name: string
[src]
§
path: URL
[src]
§
status: number
[src]
§
statusText: string
[src]