From 1f40a941f7252c7b6947d37a0c05e95528140578 Mon Sep 17 00:00:00 2001 From: "honfika@gmail.com" Date: Mon, 6 Jul 2015 16:24:46 +0200 Subject: [PATCH] Do not ask user to abort-retry-ignore on interttuped exception --- libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/RetryTask.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/RetryTask.java b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/RetryTask.java index 7877e387d..5d5ee5e80 100644 --- a/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/RetryTask.java +++ b/libsrc/ffdec_lib/src/com/jpexs/decompiler/flash/RetryTask.java @@ -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: