1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-06 02:11:04 +01:00

Reconnect process exit codes.

This commit is contained in:
hacksalot
2016-01-18 20:06:45 -05:00
parent 23cd52885b
commit 2f628f8564
9 changed files with 46 additions and 25 deletions

View File

@ -78,8 +78,19 @@ Definition of the Verb class.
payload.sub = subEvent;
this.fire('status', payload);
return true;
},
/**
Associate error info with the invocation.
*/
setError: function( code, obj ) {
this.errorCode = code;
this.errorObj = obj;
}
});
}());