vibez-core
Version:
Utilities, types and common dependencies.
13 lines • 511 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const VibezError_1 = require("./VibezError");
class DomainError extends VibezError_1.VibezError {
constructor(name, shortDescription, module, message, stack, priority, description) {
super(module, message, stack, priority);
this.name = name;
this.shortDescription = shortDescription;
this.description = description;
}
}
exports.DomainError = DomainError;
//# sourceMappingURL=DomainError.js.map