ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
12 lines • 448 B
JavaScript
/**
*/
/**
*/ export class MetadataWithSuchNameAlreadyExistsError extends Error {
constructor(metadataType, name) {
super();
this.name = "MetadataWithSuchNameAlreadyExistsError";
this.message = metadataType + " metadata with such name " + name + " already exists. " +
"Do you apply decorator twice? Or maybe try to change a name?";
}
}
//# sourceMappingURL=MetadataWithSuchNameAlreadyExistsError.js.map