Skip to main content
Module

x/enzastdlib/errors/internalerror.ts>InternalError

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
class InternalError
extends Error
import { InternalError } from "https://deno.land/x/enzastdlib@v0.0.4/errors/internalerror.ts";

Represents an exception regarding an error that occured within the internals of a system.

Examples

Example 1

import { InternalError } from 'https://deno.land/x/enzastdlib/errors/mod.ts';

throw new InternalError(
    'an exception occured while processing the http request',
);

Properties

readonly
name