typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
27 lines (25 loc) • 803 B
JavaScript
import { ObjectUtils } from "../util/ObjectUtils";
import { TypeORMError } from "./TypeORMError";
/**
* Thrown when query execution has failed.
*/
export class QueryFailedError extends TypeORMError {
constructor(query, parameters, driverError) {
super(driverError
.toString()
.replace(/^error: /, "")
.replace(/^Error: /, "")
.replace(/^Request/, ""));
this.query = query;
this.parameters = parameters;
this.driverError = driverError;
if (driverError) {
const { name: _, // eslint-disable-line
...otherProperties } = driverError;
ObjectUtils.assign(this, {
...otherProperties,
});
}
}
}
//# sourceMappingURL=QueryFailedError.js.map