branch develop updated (f38f98c -> 2012cc8)
This is an automated email from the git hooks/post-receive script. New change to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git from f38f98c [jgitflow-maven-plugin]Updating develop poms back to pre merge state new 2012cc8 La connexion serveur HTTPS ne fonctionne pas (Fixes #8914) The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 2012cc8f0b10c154646da3556e69104aab450d72 Author: Tony CHEMIT <dev@tchemit.fr> Date: Wed Jan 4 12:03:07 2017 +0100 La connexion serveur HTTPS ne fonctionne pas (Fixes #8914) Summary of changes: .../fr/ird/observe/application/swing/ui/storage/StorageUIModel.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch develop in repository observe. See https://gitlab.nuiton.org/codelutin/observe.git commit 2012cc8f0b10c154646da3556e69104aab450d72 Author: Tony CHEMIT <dev@tchemit.fr> Date: Wed Jan 4 12:03:07 2017 +0100 La connexion serveur HTTPS ne fonctionne pas (Fixes #8914) --- .../fr/ird/observe/application/swing/ui/storage/StorageUIModel.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/storage/StorageUIModel.java b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/storage/StorageUIModel.java index 47a00f7..fbc5fe3 100644 --- a/application-swing/src/main/java/fr/ird/observe/application/swing/ui/storage/StorageUIModel.java +++ b/application-swing/src/main/java/fr/ird/observe/application/swing/ui/storage/StorageUIModel.java @@ -69,6 +69,7 @@ import java.beans.PropertyChangeListener; import java.io.File; import java.io.FileInputStream; import java.io.IOException; +import java.lang.reflect.UndeclaredThrowableException; import java.net.MalformedURLException; import java.net.URL; import java.nio.file.Files; @@ -1734,8 +1735,11 @@ public class StorageUIModel extends WizardModel<StorageStep> { connexionStatusError = e.getClass().getSimpleName(); setConnexionStatus(ConnexionStatus.FAILED); - } catch (Exception e) { + } catch (Throwable e) { + if (e instanceof UndeclaredThrowableException) { + e = ((UndeclaredThrowableException)e).getUndeclaredThrowable(); + } connexionStatusError = e.getMessage(); if (log.isErrorEnabled()) { -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.
participants (1)
-
codelutin.com scm