Exemplo n.º 1
0
/**
* Эта функция используется, как правило, при отключенном режиме разработчика.
* @see mageCoreErrorHandler():
		if (Mage::getIsDeveloperMode()) {
			throw new Exception($errorMessage);
		}
		else {
			Mage::log($errorMessage, Zend_Log::ERR);
		}
* @param bool $isOperationSuccessfull [optional]
* @throws DFE
*/
function df_throw_last_error($isOperationSuccessfull = false)
{
    if (!$isOperationSuccessfull) {
        \Df\Qa\Message\Failure\Error::throwLast();
    }
}