Skip to content

Commit d23ff71

Browse files
author
shendley
committed
Fixed OnNextValue to not call toString on the failing value
1 parent 405c61d commit d23ff71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public static class OnNextValue extends RuntimeException {
116116
* the item that the Observable was trying to emit at the time of the exception
117117
*/
118118
public OnNextValue(Object value) {
119-
super("OnError while emitting onNext value: " + value);
119+
super("OnError while emitting onNext.");
120120
this.value = value;
121121
}
122122

0 commit comments

Comments
 (0)