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