UNPKG

@nestjs/core

Version:

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

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