import { Oak } from "https://deno.land/x/superdeno@4.9.0/test/deps.ts";
const { HttpError } = Oak;
The base class that all derivative HTTP extend, providing a status
and an
expose
property.
Properties
A flag to indicate if the internals of the error, like the stack, should
be exposed to a client, or if they are "private" and should not be leaked.
By default, all client errors are true
and all server errors are
false
.
readonly
headers: Headers | undefinedThe optional headers object that is set on the error.
readonly
status: ErrorStatusThe error status that is set on the error.