do not use interruptions to abort execution

This commit is contained in:
2023-02-28 20:17:25 +01:00
parent eb9904a30b
commit be550ebac5
8 changed files with 108 additions and 24 deletions

View File

@@ -96,6 +96,8 @@ public class Plotter {
if (dataSerie.getValues() > 0) {
dataSeries.add(dataSerie);
}
} catch (final AbortException e) {
throw e;
} catch (final Exception e) {
throw new IllegalStateException(e);
}