diff --git a/application/api/job/OrderAutoOper.php b/application/api/job/OrderAutoOper.php
index 62920b0..d68d2a5 100644
--- a/application/api/job/OrderAutoOper.php
+++ b/application/api/job/OrderAutoOper.php
@@ -2,6 +2,7 @@
 
 namespace app\api\job;
 
+use think\Exception;
 use think\queue\Job;
 
 
@@ -25,7 +26,7 @@ class OrderAutoOper extends BaseJob
 
             // 删除 job
             $job->delete();
-        } catch (\Exception $e) {
+        } catch (Exception $e) {
             // 队列执行失败
             \think\Log::write('queue-' . get_class() . '-autoClose' . ':执行失败,错误信息:' . $e->getMessage());
         }