KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openharmonise > rm > publishing > PopulateDependencyException


1 /*
2  * (C) Copyright SimulacraMedia 2003. All rights reserved.
3  *
4  * Created on Jan 14, 2005
5  *
6  */

7 package org.openharmonise.rm.publishing;
8
9 import org.openharmonise.rm.PopulateException;
10
11 /**
12  * Thrown by methods to indicate that preconditions to the
13  * current populate operation have not been fulfilled .
14  *
15  * @author MATT TREANOR
16  * @version $Revision: 1.1 $
17  *
18  */

19 public class PopulateDependencyException extends PopulateException {
20
21     /**
22      *
23      */

24     public PopulateDependencyException() {
25         super();
26         // TODO Auto-generated constructor stub
27
}
28
29     /**
30      * @param s
31      */

32     public PopulateDependencyException(String JavaDoc s) {
33         super(s);
34         // TODO Auto-generated constructor stub
35
}
36
37     /**
38      * @param s
39      * @param e
40      */

41     public PopulateDependencyException(String JavaDoc s, Throwable JavaDoc e) {
42         super(s, e);
43         // TODO Auto-generated constructor stub
44
}
45
46     /**
47      * @param e
48      */

49     public PopulateDependencyException(Throwable JavaDoc e) {
50         super(e);
51         // TODO Auto-generated constructor stub
52
}
53
54 }
55
Popular Tags