typeorm
Version:
Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.
15 lines (13 loc) • 651 B
JavaScript
import { TypeORMError } from "./TypeORMError";
export class MetadataAlreadyExistsError extends TypeORMError {
constructor(metadataType, constructor, propertyName) {
super(metadataType +
" metadata already exists for the class constructor " +
JSON.stringify(constructor) +
(propertyName
? " on property " + propertyName
: ". If you previously renamed or moved entity class, make sure" +
" that compiled version of old entity class source wasn't left in the compiler output directory."));
}
}
//# sourceMappingURL=MetadataAlreadyExistsError.js.map