From 9e48d25a9ac79e5fcf77076a3f4565d9199c9825 Mon Sep 17 00:00:00 2001 From: Christian Wulf <chw@informatik.uni-kiel.de> Date: Sun, 12 Jul 2015 09:12:04 +0200 Subject: [PATCH] adapted execption message --- src/main/java/teetime/framework/ExecutionException.java | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/main/java/teetime/framework/ExecutionException.java b/src/main/java/teetime/framework/ExecutionException.java index c4f89726..7ad685af 100644 --- a/src/main/java/teetime/framework/ExecutionException.java +++ b/src/main/java/teetime/framework/ExecutionException.java @@ -27,15 +27,12 @@ import teetime.util.ThreadThrowableContainer; */ public class ExecutionException extends RuntimeException { - /** - * - */ private static final long serialVersionUID = 7486086437171884298L; private final Collection<ThreadThrowableContainer> exceptions; public ExecutionException(final Collection<ThreadThrowableContainer> exceptions) { - super("Error(s) while running analysis. Check thrown exceptions."); + super("Error(s) while execution. Check thrown exception(s)."); this.exceptions = exceptions; } -- GitLab