@kerthin/domain
Version:
Kerthin Domain (based on DDD)
12 lines • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DomainValidationException = void 0;
const exception_1 = require("./exception");
class DomainValidationException extends exception_1.Exception {
constructor(message, code) {
super(message);
this.code = code;
}
}
exports.DomainValidationException = DomainValidationException;
//# sourceMappingURL=domain-validation.exception.js.map