in junit-addons/src/main/java/com/mycila/junit/concurrent/ConcurrentException.java [27:32]
public Throwable unwrap() {
Throwable t = getCause();
while (t instanceof ConcurrentException)
t = t.getCause();
return t;
}