@dbml/cli
Version:
See our website [@dbml/cli](https://dbml.dbdiagram.io/cli/) for more information
16 lines (15 loc) • 386 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
class DomainError extends Error {
constructor(message, rootError = {}) {
super(message);
this.name = this.constructor.name;
this.rootError = rootError;
Error.captureStackTrace(this, this.constructor);
}
}
var _default = DomainError;
exports.default = _default;
;