Commit ae2c181e authored by Jean-Philippe Metivier's avatar Jean-Philippe Metivier
Browse files

Problème de catch

parent 3c40bb06
Loading
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -334,8 +334,9 @@ EOS;
                $mail->setLog($e->getMessage());
                $this->update($mail);
            }
            catch (Exception){}
            Throw new Exception($e->getMessage());
            catch (Exception) {
                throw new Exception($e->getMessage());
            }
        }
        return $mail;
    }