ravendb
Version:
RavenDB client for Node.js
8 lines • 403 B
JavaScript
import { throwError } from "../../../Exceptions/index.js";
export class PutAttachmentCommandHelper {
static throwStreamWasAlreadyUsed() {
throwError("InvalidOperationException", "It is forbidden to re-use the same InputStream for more than one attachment. "
+ "Use a unique InputStream per put attachment command.");
}
}
//# sourceMappingURL=PutAttachmentCommandHelper.js.map