* @constructor * @extends {Error} * @this {ExitStatus}
(status)
| 403685 | * @this {ExitStatus} |
| 403686 | */ |
| 403687 | function ExitStatus(status) { |
| 403688 | this.name = "ExitStatus"; |
| 403689 | this.message = "Program terminated with exit(" + status + ")"; |
| 403690 | this.status = status; |
| 403691 | }; |
| 403692 | ExitStatus.prototype = new Error(); |
| 403693 | ExitStatus.prototype.constructor = ExitStatus; |
| 403694 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…