Skip to main content
Go to Latest
interface HttpErrorOptions
implements ErrorOptions
import { type HttpErrorOptions } from "https://deno.land/x/udibo_react_app@0.1.2/app_server.tsx";

Options for initializing an HttpError.

Index Signatures

[key: string]: unknown

Properties

optional
name: string

The name of the error. Default based on error status.

optional
message: string
optional
status: number

The HTTP status associated with the error. Defaults to 500.

optional
expose: boolean

Determines if the error should be exposed in the response. Defaults to true for client error statuses and false for server error statuses.