import * as mod from "https://dotland.deno.dev/std@0.181.0/http/http_errors.ts";
A collection of HTTP errors and utilities.
The export errors
contains an individual class that extends
HttpError
which makes handling HTTP errors in a structured way.
The function createHttpError
provides a way to create instances
of errors in a factory pattern.
The function isHttpError
is a type guard that will narrow a value
to an HttpError
instance.
Examples
Classes
The base class that all derivative HTTP extend, providing a |
Variables
A namespace that contains each error constructor. Each error extends
|
Functions
A factory function which provides a way to create errors. It takes up to 3
arguments, the error | |
A type guard that determines if the value is an HttpError or not. |