123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- class PHPExcel_Exception extends Exception
- {
-
- public static function errorHandlerCallback($code, $string, $file, $line, $context)
- {
- $e = new self($string, $code);
- $e->line = $line;
- $e->file = $file;
- throw $e;
- }
- }
|