diff --git a/src/main/java/teetime/framework/Execution.java b/src/main/java/teetime/framework/Execution.java index fd15a5af31b35d32297d4bc453abbe195c952fce..5ad6fd52d0f5dcaaedf0b6d65b48cbcdd1283146 100644 --- a/src/main/java/teetime/framework/Execution.java +++ b/src/main/java/teetime/framework/Execution.java @@ -27,7 +27,7 @@ import org.slf4j.LoggerFactory; import teetime.framework.exceptionHandling.AbstractExceptionListener; import teetime.framework.exceptionHandling.IExceptionListenerFactory; -import teetime.framework.exceptionHandling.IgnoringExceptionListenerFactory; +import teetime.framework.exceptionHandling.TerminatingExceptionListenerFactory; import teetime.framework.signal.InitializingSignal; import teetime.framework.signal.ValidatingSignal; import teetime.framework.validation.AnalysisNotValidException; @@ -72,11 +72,11 @@ public final class Execution<T extends Configuration> implements UncaughtExcepti * to be used for the analysis */ public Execution(final T configuration) { - this(configuration, false, new IgnoringExceptionListenerFactory()); + this(configuration, false, new TerminatingExceptionListenerFactory()); } public Execution(final T configuration, final boolean validationEnabled) { - this(configuration, validationEnabled, new IgnoringExceptionListenerFactory()); + this(configuration, validationEnabled, new TerminatingExceptionListenerFactory()); } /**