UNPKG

typeorm

Version:

Data-Mapper ORM for TypeScript, ES7, ES6, ES5. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, 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