UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript and ES2021+. Supports MySQL/MariaDB, PostgreSQL, MS SQL Server, Oracle, SAP HANA, SQLite, MongoDB databases.

13 lines (11 loc) 437 B
import { TypeORMError } from "./TypeORMError"; export class MetadataWithSuchNameAlreadyExistsError extends TypeORMError { constructor(metadataType, name) { super(metadataType + " metadata with such name " + name + " already exists. " + "Do you apply decorator twice? Or maybe try to change a name?"); } } //# sourceMappingURL=MetadataWithSuchNameAlreadyExistsError.js.map