1090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson/*
21d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Copyright (C) 2009 The Guava Authors
3090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson *
4090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * Licensed under the Apache License, Version 2.0 (the "License");
5090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * you may not use this file except in compliance with the License.
6090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * You may obtain a copy of the License at
7090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson *
8090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * http://www.apache.org/licenses/LICENSE-2.0
9090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson *
10090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * Unless required by applicable law or agreed to in writing, software
11090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * distributed under the License is distributed on an "AS IS" BASIS,
12090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * See the License for the specific language governing permissions and
14090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * limitations under the License.
15090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson */
16090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson
17090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilsonpackage com.google.common.collect;
18090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson
19090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson/**
201d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * Wraps an exception that occurred during a computation in a different thread.
21090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson *
22090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson * @author Bob Lee
231d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * @since 2.0 (imported from Google Collections Library)
241d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert * @deprecated this class is unused by com.google.common.collect. <b>This class
251d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert *     is scheduled for deletion in November 2012.</b>
26090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson */
271d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringert@Deprecated
281d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertpublic
291d580d0f6ee4f21eb309ba7b509d2c6d671c4044Bjorn Bringertclass AsynchronousComputationException extends ComputationException {
30090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson  /**
31090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson   * Creates a new instance with the given cause.
32090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson   */
33090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson  public AsynchronousComputationException(Throwable cause) {
34090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson    super(cause);
35090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson  }
36090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson  private static final long serialVersionUID = 0;
37090f9b4c879985bc747c214f82c62471e60c7742Jesse Wilson}
38