Commit c077cb8a authored by Antony Le Courtes's avatar Antony Le Courtes
Browse files

Renvoi de l'exception pour meilleur compréhension des erreurs

parent 36d60f51
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -322,8 +322,8 @@ EOS;
            }

            $this->update($mail);
        } catch (Exception) {
            return null;
        } catch (Exception $e) {
            Throw new Exception($e->getMessage());
        }
        return $mail;
    }