e-commercee
Version:
This package contains a backend of what would be the logic of a e-commercee software, the architecture used is made in 3 layers
11 lines • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogicException = void 0;
const customexception_1 = require("./customexception");
class LogicException extends customexception_1.CustomException {
constructor(mensaje) {
super(mensaje);
}
}
exports.LogicException = LogicException;
//# sourceMappingURL=logicexception.js.map