From 3bfa5f1c4a28cd461b2395b48c7b8ebe84c3ed3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=A6=E4=BA=9A=E7=90=A6?= <18339795172@163.com> Date: Mon, 28 Oct 2019 16:56:47 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A8=A1=E5=9E=8B=E9=AA=8C=E8=AF=81=20?= =?UTF-8?q?=E5=BC=82=E5=B8=B8=E6=8D=95=E8=8E=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/admin/library/traits/Backend.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/application/admin/library/traits/Backend.php b/application/admin/library/traits/Backend.php index 1ed9d9f7e..a006fc2b2 100755 --- a/application/admin/library/traits/Backend.php +++ b/application/admin/library/traits/Backend.php @@ -128,7 +128,7 @@ trait Backend } catch (PDOException $e) { Db::rollback(); $this->error($e->getMessage()); - } catch (Exception $e) { + } catch (\Exception $e) { Db::rollback(); $this->error($e->getMessage()); } @@ -179,7 +179,7 @@ trait Backend } catch (PDOException $e) { Db::rollback(); $this->error($e->getMessage()); - } catch (Exception $e) { + } catch (\Exception $e) { Db::rollback(); $this->error($e->getMessage()); } @@ -218,7 +218,7 @@ trait Backend } catch (PDOException $e) { Db::rollback(); $this->error($e->getMessage()); - } catch (Exception $e) { + } catch (\Exception $e) { Db::rollback(); $this->error($e->getMessage()); } @@ -255,7 +255,7 @@ trait Backend } catch (PDOException $e) { Db::rollback(); $this->error($e->getMessage()); - } catch (Exception $e) { + } catch (\Exception $e) { Db::rollback(); $this->error($e->getMessage()); } @@ -291,7 +291,7 @@ trait Backend } catch (PDOException $e) { Db::rollback(); $this->error($e->getMessage()); - } catch (Exception $e) { + } catch (\Exception $e) { Db::rollback(); $this->error($e->getMessage()); } @@ -327,7 +327,7 @@ trait Backend } catch (PDOException $e) { Db::rollback(); $this->error($e->getMessage()); - } catch (Exception $e) { + } catch (\Exception $e) { Db::rollback(); $this->error($e->getMessage()); } -- Gitee