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 • 418 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PresentationException = void 0;
const customexception_1 = require("./customexception");
class PresentationException extends customexception_1.CustomException {
constructor(mensaje) {
super(mensaje);
}
}
exports.PresentationException = PresentationException;
//# sourceMappingURL=presentationexception.js.map