From 200300a636df59b82ce9fe3d234de4e8e5018894 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Euzenat?= <Jerome.Euzenat@inria.fr> Date: Wed, 9 Sep 2009 05:00:28 +0000 Subject: [PATCH] - added the exception catch so necessary --- src/fr/inrialpes/exmo/align/service/WSAlignment.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/fr/inrialpes/exmo/align/service/WSAlignment.java b/src/fr/inrialpes/exmo/align/service/WSAlignment.java index 475f2ef3..e5234d44 100644 --- a/src/fr/inrialpes/exmo/align/service/WSAlignment.java +++ b/src/fr/inrialpes/exmo/align/service/WSAlignment.java @@ -173,6 +173,8 @@ public class WSAlignment extends URIAlignment implements AlignmentProcess { //parser.parseString( res ); } catch (IOException ioex) { throw new AlignmentException( "XML/SOAP parsing error", ioex ); + } catch (Exception ex) { // JE2009: To suppress in Version 4 (??) + throw new AlignmentException( "XML/SOAP parsing error", ex ); } } -- GitLab