import { TypeORMError } from "./TypeORMError"; export class UpdateValuesMissingError extends TypeORMError { constructor() { super(`Cannot perform update query because update values are not defined. Call "qb.set(...)" method to specify updated values.`); } } //# sourceMappingURL=UpdateValuesMissingError.js.map