• Модуль: seo
  • Путь к файлу: ~/bitrix/modules/seo/lib/businesssuite/exception/configexceptionhandler.php
  • Класс: BitrixSeoBusinessSuiteExceptionConfigExceptionHandler
  • Вызов: ConfigExceptionHandler::getErrorQueueGenerator
private function getErrorQueueGenerator() : Generator
{
	$currentException = $this->exception;
	do
	{
		yield new MainError(
			$currentException->getMessage(),
			$currentException->getCode()
		);
	}
	while($currentException = $currentException->getPrevious());
}