ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
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}
An exception for terminatinating execution or to throw for unit testing.
__destruct()
Unregister errorhandler.