Skip to content

Commit 5ca76e0

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

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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)