1. 程式人生 > >ThinkPHP5.0---方法異常格式

ThinkPHP5.0---方法異常格式

exceptio span exce col cep catch thinkphp5 http ()

    public function test(){
        try{
            
            // 獲取到ThinkPHP的內置異常時,直接向上拋出,交給ThinkPHP處理
        }catch (\think\Exception\HttpResponseException $e){

            // 獲取到正常的異常時,輸出異常
        }catch (\Exception $e){
            
        }
    }

ThinkPHP5.0---方法異常格式