ILIAS  eassessment Revision 61809
 All Data Structures Namespaces Files Functions Variables Groups Pages
ExceptionHandler.php
Go to the documentation of this file.
1 <?php
39  public function __construct() {
40  set_error_handler(array('PHPExcel_Calculation_Exception', 'errorHandlerCallback'), E_ALL);
41  }
42 
46  public function __destruct() {
47  restore_error_handler();
48  }
49 }