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
Branches
Tags
No related merge requests found
......@@ -2,11 +2,11 @@ package teetime.framework.exceptionHandling;
import teetime.framework.Stage;
public class LoggingExceptionListenerListener extends AbstractExceptionListener {
public class LoggingExceptionListener extends AbstractExceptionListener {
@Override
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;
}
......
......@@ -4,7 +4,7 @@ public class LoggingExceptionListenerFactory implements IExceptionListenerFactor
@Override
public AbstractExceptionListener create() {
return new LoggingExceptionListenerListener();
return new LoggingExceptionListener();
}
}
......@@ -6,7 +6,7 @@ public class TerminatingExceptionListener extends AbstractExceptionListener {
@Override
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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment