in src/main/java/org/apache/sling/junit/remote/ide/ExecutionResult.java [30:44]
public ExecutionResult(Result result) {
if (result.getFailureCount() > 0) {
final List<Throwable> failures = new ArrayList<Throwable>(result.getFailureCount());
for (Failure f : result.getFailures()) {
failures.add(f.getException());
}
// TODO MultipleFailureException is an internal JUnit class -
// we don't have it when running server-side in Sling
// throwable = new MultipleFailureException(failures);
throwable = failures.get(0);
} else {
throwable = null;
}
}