nodedb-json
Version:
A lightweight JSON-based database for Node.js with TypeScript support, indexing, and complex query capabilities
12 lines • 465 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FileLockError = void 0;
const database_error_1 = require("./database-error");
class FileLockError extends database_error_1.DatabaseError {
constructor(lockPath) {
super(`Database file is locked by another process or instance: ${lockPath}`);
this.name = 'FileLockError';
}
}
exports.FileLockError = FileLockError;
//# sourceMappingURL=file-lock-error.js.map