UNPKG

@nestjs/core

Version:

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

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