@@ -306,13 +306,57 @@ final boolean completeValue(T t) {
306
306
return RESULT .compareAndSet (this , null , (t == null ) ? NIL : t );
307
307
}
308
308
309
+ static CompletionException wrapInCompletionException (Throwable t ) {
310
+ if (t == null )
311
+ return new CompletionException ();
312
+
313
+ String message ;
314
+ Throwable suppressed ;
315
+ try {
316
+ message = t .toString ();
317
+ suppressed = null ;
318
+ } catch (Throwable unknown ) {
319
+ message = "" ;
320
+ suppressed = unknown ;
321
+ }
322
+
323
+ final CompletionException wrapping = new CompletionException (message , t );
324
+
325
+ if (suppressed != null )
326
+ wrapping .addSuppressed (suppressed );
327
+
328
+ return wrapping ;
329
+ }
330
+
331
+ static ExecutionException wrapInExecutionException (Throwable t ) {
332
+ if (t == null )
333
+ return new ExecutionException ();
334
+
335
+ String message ;
336
+ Throwable suppressed ;
337
+ try {
338
+ message = t .toString ();
339
+ suppressed = null ;
340
+ } catch (Throwable unknown ) {
341
+ message = "" ;
342
+ suppressed = unknown ;
343
+ }
344
+
345
+ final ExecutionException wrapping = new ExecutionException (message , t );
346
+
347
+ if (suppressed != null )
348
+ wrapping .addSuppressed (suppressed );
349
+
350
+ return wrapping ;
351
+ }
352
+
309
353
/**
310
354
* Returns the encoding of the given (non-null) exception as a
311
355
* wrapped CompletionException unless it is one already.
312
356
*/
313
357
static AltResult encodeThrowable (Throwable x ) {
314
358
return new AltResult ((x instanceof CompletionException ) ? x :
315
- new CompletionException (x ));
359
+ wrapInCompletionException (x ));
316
360
}
317
361
318
362
/** Completes with an exceptional result, unless already completed. */
@@ -329,7 +373,7 @@ final boolean completeThrowable(Throwable x) {
329
373
*/
330
374
static Object encodeThrowable (Throwable x , Object r ) {
331
375
if (!(x instanceof CompletionException ))
332
- x = new CompletionException (x );
376
+ x = wrapInCompletionException (x );
333
377
else if (r instanceof AltResult && x == ((AltResult )r ).ex )
334
378
return r ;
335
379
return new AltResult (x );
@@ -365,7 +409,7 @@ static Object encodeRelay(Object r) {
365
409
if (r instanceof AltResult
366
410
&& (x = ((AltResult )r ).ex ) != null
367
411
&& !(x instanceof CompletionException ))
368
- r = new AltResult (new CompletionException (x ));
412
+ r = new AltResult (wrapInCompletionException (x ));
369
413
return r ;
370
414
}
371
415
@@ -393,7 +437,7 @@ private static Object reportGet(Object r, String details)
393
437
if ((x instanceof CompletionException ) &&
394
438
(cause = x .getCause ()) != null )
395
439
x = cause ;
396
- throw new ExecutionException (x );
440
+ throw wrapInExecutionException (x );
397
441
}
398
442
return r ;
399
443
}
@@ -410,7 +454,7 @@ private static Object reportJoin(Object r, String details) {
410
454
throw new CancellationException (details , (CancellationException )x );
411
455
if (x instanceof CompletionException )
412
456
throw (CompletionException )x ;
413
- throw new CompletionException (x );
457
+ throw wrapInCompletionException (x );
414
458
}
415
459
return r ;
416
460
}
@@ -2605,8 +2649,8 @@ public int getNumberOfDependents() {
2605
2649
/**
2606
2650
* Returns a string identifying this CompletableFuture, as well as
2607
2651
* its completion state. The state, in brackets, contains the
2608
- * String {@code "Completed Normally "} or the String {@code
2609
- * "Completed Exceptionally "}, or the String {@code "Not
2652
+ * String {@code "Completed normally "} or the String {@code
2653
+ * "Completed exceptionally "}, or the String {@code "Not
2610
2654
* completed"} followed by the number of CompletableFutures
2611
2655
* dependent upon its completion, if any.
2612
2656
*
@@ -2623,7 +2667,7 @@ public String toString() {
2623
2667
? "[Not completed]"
2624
2668
: "[Not completed, " + count + " dependents]" )
2625
2669
: (((r instanceof AltResult ) && ((AltResult )r ).ex != null )
2626
- ? "[Completed exceptionally: " + ((AltResult )r ).ex + "]"
2670
+ ? "[Completed exceptionally: " + ((AltResult )r ).ex . getClass (). getName () + "]"
2627
2671
: "[Completed normally]" ));
2628
2672
}
2629
2673
0 commit comments