Files
private-cloud/console/response/service_response.js
2020-01-12 19:15:08 +08:00

11 lines
178 B
JavaScript

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