blob: 9534bec50b330733351c9e49c173b53bd1e980e6 [file] [log] [blame]
// Copyright 2010 Google Inc. All Rights Reserved.
package com.google.gerrit.server.util;
/** Exception thrown by {@link FutureUtil#get(java.util.concurrent.Future)}. */
public class FutureException extends RuntimeException {
FutureException(Throwable why) {
super("Future computation failed", why);
}
}