@genexus/web-standard-functions
Version:
GeneXus JavaScript standard functions library for web generators
17 lines • 501 B
JavaScript
export 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;
}
}
GxRegEx.currentInstance = null;
//# sourceMappingURL=gxRegEx.js.map