You are here

protected function PHPExcel_Calculation::_raiseFormulaError in Loft Data Grids 6.2

Same name and namespace in other branches
  1. 7.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php \PHPExcel_Calculation::_raiseFormulaError()
4 calls to PHPExcel_Calculation::_raiseFormulaError()
PHPExcel_Calculation::_calculateFormulaValue in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
* Parse a cell formula and calculate its value * *
PHPExcel_Calculation::_convertMatrixReferences in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
PHPExcel_Calculation::_parseFormula in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php
PHPExcel_Calculation::_processTokenStack in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation.php, line 3731

Class

PHPExcel_Calculation
PHPExcel_Calculation (Multiton)

Code

protected function _raiseFormulaError($errorMessage) {
  $this->formulaError = $errorMessage;
  $this->_cyclicReferenceStack
    ->clear();
  if (!$this->suppressFormulaErrors) {
    throw new PHPExcel_Calculation_Exception($errorMessage);
  }
  trigger_error($errorMessage, E_USER_ERROR);
}