Skip to main content
Module

x/oak/context.ts>Context#throw

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
method Context.prototype.throw
import { Context } from "https://deno.land/x/oak@v11.1.0/context.ts";

Create and throw an HTTP Error, which can be used to pass status information which can be caught by other middleware to send more meaningful error messages back to the client. The passed error status will be set on the .response.status by default as well.

Parameters

errorStatus: ErrorStatus
optional
message: string
optional
props: Record<string, unknown>

Returns

never