export class GeneratedOnlyForPrimaryError extends Error { name = "GeneratedOnlyForPrimaryError"; constructor(object: Object, propertyName: string) { super(); this.message = `Column for property ${(object.constructor).name}#${propertyName} cannot have a generated ` + `value because its not a primary column. Try to use @PrimaryColumn decorator.`; } }