bitfront-library
Version:
Angular CLI project with components and classes used by other Angular projects of the BIT foundation.
21 lines • 684 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Error = void 0;
/**
* Clase base que contiene la información sobre un error producido en la aplicación.
*/
var Error = /** @class */ (function () {
function Error(url, textCA, textES, text, trazaError, notificacion, masInfo, multipleText) {
this.url = url;
this.textCA = textCA;
this.textES = textES;
this.text = text;
this.trazaError = trazaError;
this.notificacion = notificacion;
this.masInfo = masInfo;
this.multipleText = multipleText;
}
return Error;
}());
exports.Error = Error;
//# sourceMappingURL=error.js.map