"""Error messages for common models.""" ERROR_CTX_USER_ID_NOT_SET = 'context user_id is not set.' ERROR_ENTITY_COMPOSITE_KEY_NOT_SUPPORTED = ( '{object_type} has {num_cols} primary key columns. ' 'Operation only supports single-column primary keys.' ) ERROR_ENTITY_DOES_NOT_EXIST = '{object_type} {object_id} does not exist.' ERROR_ENTITY_IS_SOFT_DELETED = 'Specified instance is already deleted.' ERROR_NOT_CREATABLE = 'Model has no created_at or created_by fields.' ERROR_NOT_SOFT_DELETABLE = 'Model has no deleted_at or deleted_by fields.' ERROR_NOT_UPDATABLE = 'Model has no last_modified or last_modified_by fields.'