Constructs an exit exception.paramstatus the status code returned via System.exit() super("ExitException: status " + status); this.status = status;
super("ExitException: status " + status); this.status = status;
Constructs an exit exception.parammsg the message to be displayed.paramstatus the status code returned via System.exit() super(msg); this.status = status;
super(msg); this.status = status;
The status code returned by System.exit()returnthe status code returned by System.exit() return status;
return status;