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

ClientError

import { ClientError } from "https://raw.githubusercontent.com/Caesar2011/denotrain/master/mod.ts";
class ClientError extends Error {
constructor(
statusCode: number,
message: string,
details?: {
[_: string]: any;
}
,
);
}

§Extends

§
Error
[src]

§Constructors

§
new ClientError(statusCode: number, message: string, details?: {
[_: string]: any;
}
)
[src]