• Модуль: rest
  • Путь к файлу: ~/bitrix/modules/rest/lib/restexception.php
  • Класс: BitrixRestRestException
  • Вызов: RestException::setApplicationException
public function setApplicationException(CApplicationException $ex)
{
	if($ex->getId())
	{
		$this->setErrorCode($ex->getId());
	}
	else
	{
		$this->setErrorCode(self::ERROR_CORE);
	}

	$this->message = $ex->getString();
}