@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
21 lines • 624 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GxRegEx = void 0;
class GxRegEx {
constructor(errCode, errDescription) {
this.errCode = 0;
this.errDescription = "";
this.errCode = errCode;
this.errDescription = errDescription;
GxRegEx.currentInstance = this;
}
static getLastErrCode() {
return GxRegEx.currentInstance.errCode;
}
static getLastErrDescription() {
return GxRegEx.currentInstance.errDescription;
}
}
exports.GxRegEx = GxRegEx;
GxRegEx.currentInstance = null;
//# sourceMappingURL=gxRegEx.js.map