diff --git a/src/main/java/teetime/framework/ExecutionException.java b/src/main/java/teetime/framework/ExecutionException.java index c4f8972650dded88de1f379ee1111d12b7db1b4e..7ad685af258b909be92a4e7a6eb86172c4ad2a4b 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; }