blob: acdb1b6c55cd65596845fb124bdab7d8859e760b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
function exception_error_handler($errno, $errstr, $errfile, $errline ) {
if (ini_get('error_reporting') == 0)
return;
throw new ErrorException($errstr, 0, $errno, $errfile, $errline);
}
set_error_handler("exception_error_handler");
class NotFoundException extends Exception {}
class ScheduleException extends Exception {}
|