We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7437bf commit d75d1e4Copy full SHA for d75d1e4
src/main/java/net/tascalate/concurrent/AbstractCompletableTask.java
@@ -418,7 +418,7 @@ private static ExecutionException rewrapExecutionException(ExecutionException ex
418
if (ex.getCause() instanceof CompletionException) {
419
Throwable completionExceptionReason = ex.getCause().getCause();
420
if (null != completionExceptionReason) {
421
- return new ExecutionException(ex.getMessage(), completionExceptionReason);
+ return new ExecutionException(completionExceptionReason);
422
}
423
424
return ex;
0 commit comments