getStatusCode(); } if(preg_match('/^(module|controller|method) not exists/', $e->getMessage())) { return (new Response)->api([], ResponsableException::HTTP_NOT_FOUND, 'HTTP NOT FOUND'); } if ($e instanceof \exception\ResponsableException || true ) { if($e instanceof \exception\ResponsableException){ $data = $e->getData(); }else{ $data = []; } $trace = $e->getTrace(); $trace_return = []; foreach($trace as $trace_item) { if(isset($trace_item['file']) && preg_match('/think\/App\.php$/', $trace_item['file'])) break; $trace_return[] = $trace_item; } if(config('app.app_debug') == true){ return (new Response)->api($data, $e->getCode(), $e->getMessage(), [],$e->getFile().'-'.$e->getLine()); }else{ return (new Response)->api($data, $e->getCode(), $e->getMessage()); } } else { return (new Response)->api([], ResponsableException::HTTP_INTERNAL_ERROR, '系统异常'); } } }