如何为throw函数中的getMessage指定用户错误消息?
catch(Exception $e){
\Session::flash('error', 'Unable to process request.Error:'.json_encode($e->getMessage(), true));
}
答案 0 :(得分:0)
您不需要编码
catch(Exception $e){
\Session::flash('error', 'Unable to process request.Error:'.$e->getMessage());
}