V6118. The original exception object was swallowed. Cause of original exception could be lost.
V6118 The original exception object 'IOException' was swallowed. Cause of original exception could be lost. MvnProjectBuilder.java 122
public void build(Path projectDir) {
....
try {
ModelUtils.persistModel(projectDir.resolve("pom.xml"), model);
} catch (IOException e) {
throw new IllegalStateException(); // <=
}
}