When you generate a series of Later<?> objects, any that fail will produce an exception when you call get().
If the entire call failed, all the Later<?> objects in that batch will produce the same exception. If the whole call succeeded but individual requests produced failures, only those particular Later<?>.get() calls will throw the exception.
Jeff