选择语言 :

 Core_Core::exception_handler

null Core_Core::exception_handler( )
File: ./core/classes/core.class.php
public static function exception_handler(Exception $e)
{
    $code = $e->getCode();
    if ( $code !== 8 )
    {
        Core::show_500($e);
        exit();
    }
}