j7/error.js
aozhiwei 00667f3e3b 1
2022-04-13 15:22:11 +08:00

11 lines
157 B
JavaScript

class InternalError {
constructor(errCode, errMsg) {
this.errCode = errCode;
this.errMsg = errMsg;
}
}
exports.InternalError = InternalError;