Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/oak_http_proxy/test/deps.ts>Oak.HttpError

Proxy middleware for Deno Oak HTTP servers. 🐿 🦕
Latest
class Oak.HttpError
extends Error
import { Oak } from "https://deno.land/x/oak_http_proxy@2.3.0/test/deps.ts";
const { HttpError } = Oak;

The base class that all derivative HTTP extend, providing a status and an expose property.

Constructors

new
HttpError(message?, options?: HttpErrorOptions)

Properties

readonly
expose: boolean

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 | undefined

The optional headers object that is set on the error.

readonly
status: ErrorStatus

The error status that is set on the error.