Files
private-cloud/console/response/service_response.js

11 lines
178 B
JavaScript
Raw Normal View History

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