Pre Merge pull request !149 from Qyq/master

pull/149/MERGE
Qyq 2019-11-09 15:19:39 +08:00 committed by Gitee
commit b060651db1
1 changed files with 6 additions and 6 deletions

View File

@ -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());
}