• Модуль: crm
  • Путь к файлу: ~/bitrix/modules/crm/lib/volume/base.php
  • Класс: Bitrix\Crm\Volume\Base
  • Вызов: Base::getLastError
public function getLastError()
{
	if ($this->errorCollection instanceof Main\ErrorCollection)
	{
		$offset = $this->errorCollection->count() - 1;
		return $this->errorCollection->offsetGet($offset);
	}

	return null;
}