MCPcopy Create free account
hub / github.com/sql-js/sql.js / ExitStatus

Function ExitStatus

js/sql-debug.js:403687–403691  ·  view source on GitHub ↗

* @constructor * @extends {Error} * @this {ExitStatus}

(status)

Source from the content-addressed store, hash-verified

403685 * @this {ExitStatus}
403686 */
403687function ExitStatus(status) {
403688 this.name = "ExitStatus";
403689 this.message = "Program terminated with exit(" + status + ")";
403690 this.status = status;
403691};
403692ExitStatus.prototype = new Error();
403693ExitStatus.prototype.constructor = ExitStatus;
403694

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…