@dwwoelfel/lds
Version:
Logical decoding server for PostgreSQL, monitors for new/edited/deleted rows and announces them to interested clients.
12 lines • 383 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class FatalError extends Error {
constructor(message, originalError) {
super(message);
this.fatal = true;
Object.setPrototypeOf(this, new.target.prototype);
this.originalError = originalError;
}
}
exports.default = FatalError;
//# sourceMappingURL=fatal-error.js.map