Do not ask user to abort-retry-ignore on interttuped exception

This commit is contained in:
honfika@gmail.com
2015-07-06 16:24:46 +02:00
parent b3c39bbbee
commit 1f40a941f7

View File

@@ -41,6 +41,8 @@ public class RetryTask {
retry = false;
try {
r.run();
} catch (InterruptedException ex) {
throw ex;
} catch (Exception ex) {
switch (handler.handle(ex)) {
case AbortRetryIgnoreHandler.ABORT: