ravendb
Version:
RavenDB client for Node.js
19 lines • 602 B
JavaScript
import { OperationExecutor } from "./OperationExecutor.js";
import { throwError } from "../../Exceptions/index.js";
/**
* For internal session use only
*/
export class SessionOperationExecutor extends OperationExecutor {
_session;
/**
* This constructor should not be used
*/
constructor(session) {
super(session.documentStore, session.databaseName);
this._session = session;
}
forDatabase(databaseName) {
return throwError("InvalidOperationException", "The method is not supported.");
}
}
//# sourceMappingURL=SessionOperationExecutor.js.map