Skip to content

Commit 5ca76e0

Browse files
Restore use of messagePrefix
as per #1266
1 parent 0f2cd15 commit 5ca76e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rxjava-core/src/main/java/rx/exceptions/CompositeException.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public CompositeException(String messagePrefix, Collection<Throwable> errors) {
4545
_exceptions.add(e);
4646
}
4747
this.exceptions = Collections.unmodifiableList(_exceptions);
48-
this.message = count + " exceptions occurred. See them in causal chain below.";
48+
this.message = messagePrefix + " " + count + " exceptions occurred. See them in causal chain below.";
4949
this.cause = _cause;
5050
}
5151

0 commit comments

Comments
 (0)