UNPKG

@t3ned/channel

Version:

Ergonomic, chaining-based Typescript framework for quick API development for Fastify

14 lines 520 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MissingEnvVariableError = void 0; const ChannelError_1 = require("./ChannelError"); class MissingEnvVariableError extends ChannelError_1.ChannelError { /** * @param envVariable The name of the env variable */ constructor(envVariable) { super(`Missing environment variable: ${envVariable}`); } } exports.MissingEnvVariableError = MissingEnvVariableError; //# sourceMappingURL=MissingEnvVariableError.js.map