Source code: Freenet/node/DataNotReadyException.java
1 package Freenet.node;
2 /*
3 This code is part of the Java Adaptive Network Client by Ian Clarke.
4 It is distributed under the GNU Public Licence (GPL) version 2. See
5 http://www.gnu.org/ for further details of the GPL.
6
7 Explanation of Code Versions:
8 0.0.0 = Initial Description
9 0.0.1 = API Specified
10 0.x (x>0) = Partial Implementation
11 x.0 (x>0) = Operational
12
13 Requires Classes:
14 */
15
16 /**
17 * Thrown if an attempt is made to access a data item before it is ready
18 * (nescessary as Data items can be initialised concurrently)
19 *
20 * @version 1.0
21 * @author <A HREF="I.Clarke@strs.co.uk">Ian Clarke</A>
22 **/
23
24 public class DataNotReadyException extends Exception
25 {
26 }