ILIAS  Release_4_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
ExceptionHandler.php
Go to the documentation of this file.
1 <?php
29 if (!defined('PHPEXCEL_ROOT')) {
33  define('PHPEXCEL_ROOT', dirname(__FILE__) . '/../../');
34 }
35 
37 require_once PHPEXCEL_ROOT . 'PHPExcel/Calculation/Exception.php';
38 
50  public function __construct() {
51  set_error_handler(array('PHPExcel_Calculation_Exception', 'errorHandlerCallback'), E_ALL);
52  }
53 
57  public function __destruct() {
58  restore_error_handler();
59  }
60 }