You are here

class PHPExcel_Calculation_Exception in Loft Data Grids 7.2

Same name and namespace in other branches
  1. 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php \PHPExcel_Calculation_Exception

PHPExcel_Calculation_Exception

@category PHPExcel @package PHPExcel_Calculation @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)

Hierarchy

Expanded class hierarchy of PHPExcel_Calculation_Exception

1 string reference to 'PHPExcel_Calculation_Exception'
PHPExcel_Calculation_ExceptionHandler::__construct in vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/ExceptionHandler.php
* Register errorhandler

File

vendor/phpoffice/phpexcel/Classes/PHPExcel/Calculation/Exception.php, line 36

View source
class PHPExcel_Calculation_Exception extends PHPExcel_Exception {

  /**
   * Error handler callback
   *
   * @param mixed $code
   * @param mixed $string
   * @param mixed $file
   * @param mixed $line
   * @param mixed $context
   */
  public static function errorHandlerCallback($code, $string, $file, $line, $context) {
    $e = new self($string, $code);
    $e->line = $line;
    $e->file = $file;
    throw $e;
  }

}

Members