Skip to content

Commit

Permalink
Restore use of messagePrefix
Browse files Browse the repository at this point in the history
as per #1266
  • Loading branch information
benjchristensen committed Jul 24, 2014
1 parent 0f2cd15 commit 5ca76e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public CompositeException(String messagePrefix, Collection<Throwable> 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;
}

Expand Down

0 comments on commit 5ca76e0

Please sign in to comment.