From 97454f9f038ce3b92b281a5d646aa6594bf231a5 Mon Sep 17 00:00:00 2001 From: Someone Date: Mon, 17 Jun 2013 04:20:06 +0200 Subject: [PATCH] removed | in exceptionhandler. again needed by jenkins. --- .../java/at/ac/tuwien/sbc/valesriegler/group/GroupAgent.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/at/ac/tuwien/sbc/valesriegler/group/GroupAgent.java b/src/main/java/at/ac/tuwien/sbc/valesriegler/group/GroupAgent.java index 47d3525..f4fd4d2 100644 --- a/src/main/java/at/ac/tuwien/sbc/valesriegler/group/GroupAgent.java +++ b/src/main/java/at/ac/tuwien/sbc/valesriegler/group/GroupAgent.java @@ -110,7 +110,9 @@ public class GroupAgent { Thread.sleep(60000); jmsnac.sendNACMsg(new BenchmarkStop()); log.warn("Benchmark Stop Signal sent."); - } catch (InterruptedException | JMSException e) { + } catch (InterruptedException e) { + log.warn("EXCEPTION!", e); + } catch (JMSException e) { log.warn("EXCEPTION!", e); } } -- 2.43.0