UNPKG

ionic-orm-2

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

12 lines 379 B
/** */ /** */ export class EntityMetadataNotFound extends Error { constructor(target) { super(); this.name = "EntityMetadataNotFound"; const targetName = typeof target === "function" && target.name ? target.name : target; this.message = `No metadata for "${targetName}" was found.`; } } //# sourceMappingURL=EntityMetadataNotFound.js.map