Skip to main content
Module

x/drash/src/exceptions/configs_exception.ts

A microframework for Deno's HTTP server with zero third-party dependencies
Go to Latest
File
/** * Throw semantic errors related to configuration settings. */export class ConfigsException extends Error { ////////////////////////////////////////////////////////////////////////////// // FILE MARKER - CONSTRUCTOR ///////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////////////
/** * Construct an object of this class. * * @param message - (optional) The exception message. */ constructor(message: string = "Config is missing or invalid.") { super(message); }}