• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/controller/errorcode.php
  • Класс: Bitrix\Crm\Controller\ErrorCode
  • Вызов: ErrorCode::getEntityTypeNotSupportedError
static function getEntityTypeNotSupportedError(?int $entityTypeId = null): Error
{
	static::loadMessages();

	$entityTypeName = is_null($entityTypeId) ? '' : \CCrmOwnerType::ResolveName($entityTypeId);

	return new Error(
		"Entity type {$entityTypeName} is not supported",
		static::ENTITY_NOT_SUPPORTED
	);
}