@event-inc/emit
Version:
Event Inc is a fully managed event bus lets you send and receive data across mission-critical cloud apps, databases and warehouses.
13 lines (12 loc) • 347 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BuildableError = void 0;
class BuildableError extends Error {
constructor({ message, code, type, data }) {
super(message);
this.code = code;
this.type = type;
this.data = data;
}
}
exports.BuildableError = BuildableError;