fix exception message

This commit is contained in:
Jeremy Long
2018-02-05 07:10:49 -05:00
parent 61eeaca039
commit 7ca02f06c6

View File

@@ -760,7 +760,7 @@ public class Engine implements FileFilter, AutoCloseable {
} catch (ExecutionException e) {
throwFatalExceptionCollection("Analysis task failed with a fatal exception.", e, exceptions);
} catch (CancellationException e) {
throwFatalExceptionCollection("Analysis task timed out.", e, exceptions);
throwFatalExceptionCollection("Analysis task was cancelled.", e, exceptions);
}
}
} catch (InterruptedException e) {