Change SuppressedThrowables String representation separator

This commit is contained in:
Reinhard Pointner 2016-10-21 16:57:47 +08:00
parent 186808b695
commit ae21085ea5
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ public class SuppressedThrowables extends RuntimeException {
}
private static String getMessage(Throwable... causes) {
return stream(causes).map(Throwable::getMessage).map(Objects::toString).distinct().collect(joining("; "));
return stream(causes).map(Throwable::getMessage).map(Objects::toString).distinct().collect(joining(" | "));
}
}