If you initialize a local variable to null, then call an await() within a try catch block, you get ClassNotFoundException on the class in which you did that, during that classes initialization.
Simply by removing the null initialization works around the issue.
@Async public Task<Void> doStuff(Task<Void> otherStuff) { String x = null; //bad //String x; //ok try { await(otherStuff); } catch (Exception e) { throw e; } return Task.done(); }
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4