You are here

class PHPExcel_Exception in Loft Data Grids 7.2

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

PHPExcel_Exception

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

Hierarchy

Expanded class hierarchy of PHPExcel_Exception

File

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

View source
class PHPExcel_Exception extends 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

Namesort descending Modifiers Type Description Overrides
PHPExcel_Exception::errorHandlerCallback public static function Error handler callback 4