IJPL-578 Fix NPE in CompoundRuntimeException.processAll that prevents real error to be printed

GitOrigin-RevId: 14e999ce928297a166e310fee8f620b9126c0558
This commit is contained in:
Liudmila Kornilova
2024-03-14 14:45:26 +01:00
committed by intellij-monorepo-bot
parent 3d4d957326
commit 5d2aa3fa9b

View File

@@ -66,7 +66,7 @@ public final class CompoundRuntimeException extends RuntimeException {
if (stringProcessor != null) {
stringProcessor.accept(s);
}
return s;
return s == null ? "" : s;
}
StringBuilder sb = new StringBuilder();