UNPKG

@nestjs/core

Version:

Nest - modern, fast, powerful node.js web framework (@core)

12 lines (11 loc) 273 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class RuntimeException extends Error { constructor(message = ``) { super(message); } what() { return this.message; } } exports.RuntimeException = RuntimeException;