UNPKG

ionic-orm-2

Version:

Data-mapper ORM for Ionic WebSQL and SQLite

9 lines 435 B
export class PrimaryColumnCannotBeNullableError extends Error { constructor(object, propertyName) { super(); this.name = "PrimaryColumnCannotBeNullableError"; this.message = `Primary column ${object.constructor.name}#${propertyName} cannot be nullable. ` + `Its not allowed for primary keys. Try to remove nullable option.`; } } //# sourceMappingURL=PrimaryColumnCannotBeNullableError.js.map