UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

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;