UNPKG

@freemework/hosting

Version:

Hosting library of the Freemework Project.

15 lines 562 B
import { FLauncherInitializeRuntimeException } from "./f_launcher_initialize_runtime_exception.js"; export class FLauncherRestartRequiredException extends FLauncherInitializeRuntimeException { exitCode; constructor(opts) { const message = opts?.message !== undefined ? opts.message : null; if (message) { super(message); } else { super(); } this.exitCode = opts?.exitCode !== undefined ? opts.exitCode : 126; } } //# sourceMappingURL=f_launcher_restart_required_exception.js.map