Skip to content
Snippets Groups Projects
Commit 31a26e22 authored by Nelson Tavares de Sousa's avatar Nelson Tavares de Sousa
Browse files

renamed classes

parent 92f6caf4
No related branches found
No related tags found
No related merge requests found
...@@ -2,11 +2,11 @@ package teetime.framework.exceptionHandling; ...@@ -2,11 +2,11 @@ package teetime.framework.exceptionHandling;
import teetime.framework.Stage; import teetime.framework.Stage;
public class LoggingExceptionListenerListener extends AbstractExceptionListener { public class LoggingExceptionListener extends AbstractExceptionListener {
@Override @Override
public FurtherExecution onStageException(final Exception e, final Stage throwingStage) { public FurtherExecution onStageException(final Exception e, final Stage throwingStage) {
logger.warn("Exception arised from" + throwingStage.getId(), e); logger.warn("Exception occurred in " + throwingStage.getId(), e);
return FurtherExecution.CONTINUE; return FurtherExecution.CONTINUE;
} }
......
...@@ -4,7 +4,7 @@ public class LoggingExceptionListenerFactory implements IExceptionListenerFactor ...@@ -4,7 +4,7 @@ public class LoggingExceptionListenerFactory implements IExceptionListenerFactor
@Override @Override
public AbstractExceptionListener create() { public AbstractExceptionListener create() {
return new LoggingExceptionListenerListener(); return new LoggingExceptionListener();
} }
} }
...@@ -6,7 +6,7 @@ public class TerminatingExceptionListener extends AbstractExceptionListener { ...@@ -6,7 +6,7 @@ public class TerminatingExceptionListener extends AbstractExceptionListener {
@Override @Override
public FurtherExecution onStageException(final Exception e, final Stage throwingStage) { public FurtherExecution onStageException(final Exception e, final Stage throwingStage) {
logger.warn("Exception arised from" + throwingStage.getId(), e); logger.warn("Exception occurred in " + throwingStage.getId(), e);
return FurtherExecution.TERMINATE; return FurtherExecution.TERMINATE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment