ionic-orm-2
Version:
Data-mapper ORM for Ionic WebSQL and SQLite
9 lines • 435 B
JavaScript
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