Skip to main content
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
function createHttpError
Deprecated
Deprecated

(will be removed in 0.207.0) Use custom error classes instead.

A factory function which provides a way to create errors. It takes up to 3 arguments, the error Status, an message, which defaults to the status text and error options, which includes the expose property to set the .expose value on the error.

import { createHttpError } from "https://deno.land/std@0.205.0/http/http_errors.ts";

Parameters

optional
status: ErrorStatus = [UNSUPPORTED]
optional
message: string
optional
options: HttpErrorOptions