Skip to content

Commit

Permalink
Added another catch, as this causes an unnecessary crash otherwise
Browse files Browse the repository at this point in the history
  • Loading branch information
jsight committed Oct 23, 2017
1 parent b275dcb commit 7072109
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -272,7 +272,7 @@ public void failed(Path filePath, Throwable cause)
processReferences(graphContext, referenceCount, unprocessed, filterClassReferences(references, classNotFoundAnalysisEnabled));
filesToProcess.remove(unprocessed);
}
catch (Exception e)
catch (Exception | StackOverflowError e)
{
final String msg = "Failed to process: " + unprocessed + " due to: " + e.getMessage();
LOG.log(Level.WARNING, msg, e);
Expand Down

0 comments on commit 7072109

Please sign in to comment.