11 lines
178 B
JavaScript
11 lines
178 B
JavaScript
/**
|
|
* Created by Strawmanbobi
|
|
* 2016-11-27
|
|
*/
|
|
|
|
function ServiceResponse(status, cause) {
|
|
this.status = status;
|
|
this.cause = cause;
|
|
}
|
|
|
|
module.exports = ServiceResponse; |