class PHPExcel_Chart_Exception in Loft Data Grids 7.2
Same name and namespace in other branches
- 6.2 vendor/phpoffice/phpexcel/Classes/PHPExcel/Chart/Exception.php \PHPExcel_Chart_Exception
PHPExcel_Chart_Exception
@category PHPExcel @package PHPExcel_Chart @copyright Copyright (c) 2006 - 2014 PHPExcel (http://www.codeplex.com/PHPExcel)
Hierarchy
- class \PHPExcel_Exception extends \Exception- class \PHPExcel_Chart_Exception
 
Expanded class hierarchy of PHPExcel_Chart_Exception
File
- vendor/phpoffice/ phpexcel/ Classes/ PHPExcel/ Chart/ Exception.php, line 36 
View source
class PHPExcel_Chart_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
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| PHPExcel_Chart_Exception:: | public static | function | * Error handler callback
	 *
	 * Overrides PHPExcel_Exception:: | 
