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

Ajout message exception dans erreur de synchro

parent cc95f573
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -23,7 +23,7 @@ class SqlHelperService {
                throw new RuntimeException("Un problème est survenu [DRV_Exception]", 0, $e);
            }
        } catch (DBA_Exception $e) {
            throw new RuntimeException("Un problème est survenu [DBA_Exception]", 0, $e);
            throw new RuntimeException("Un problème est survenu [DBA_Exception] : " . $e->getMessage(), 0, $e);
        }
        return $tmp;
    }