选择语言 :

 Core_Core::exception_handler

null Core_Core::exception_handler( )
File: ./core/classes/core.class.php
1692
1693
1694
1695
1696
1697
1698
1699
1700
public static function exception_handler(Exception $e)
{
    $code = $e->getCode();
    if ( $code !== 8 )
    {
        Core::show_500($e);
        exit();
    }
}