"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ErrorResponse = void 0;
class ErrorResponse {
constructor(respCode, respMsg) {
this.respCode = respCode;
this.respMsg = respMsg;
}
}
exports.ErrorResponse = ErrorResponse;