From 5ca76e032a66f77e3ea7ec2b793f50d1627572d3 Mon Sep 17 00:00:00 2001 From: Ben Christensen Date: Thu, 24 Jul 2014 00:30:50 -0700 Subject: [PATCH] Restore use of messagePrefix as per https://github.com/Netflix/RxJava/issues/1266 --- rxjava-core/src/main/java/rx/exceptions/CompositeException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rxjava-core/src/main/java/rx/exceptions/CompositeException.java b/rxjava-core/src/main/java/rx/exceptions/CompositeException.java index 4542f26860..60be663943 100644 --- a/rxjava-core/src/main/java/rx/exceptions/CompositeException.java +++ b/rxjava-core/src/main/java/rx/exceptions/CompositeException.java @@ -45,7 +45,7 @@ public CompositeException(String messagePrefix, Collection errors) { _exceptions.add(e); } this.exceptions = Collections.unmodifiableList(_exceptions); - this.message = count + " exceptions occurred. See them in causal chain below."; + this.message = messagePrefix + " " + count + " exceptions occurred. See them in causal chain below."; this.cause = _cause; }