01: /*
02: * (C) Copyright SimulacraMedia 2003. All rights reserved.
03: *
04: * Created on Jan 14, 2005
05: *
06: */
07: package org.openharmonise.rm.publishing;
08:
09: 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 s) {
33: super (s);
34: // TODO Auto-generated constructor stub
35: }
36:
37: /**
38: * @param s
39: * @param e
40: */
41: public PopulateDependencyException(String s, Throwable e) {
42: super (s, e);
43: // TODO Auto-generated constructor stub
44: }
45:
46: /**
47: * @param e
48: */
49: public PopulateDependencyException(Throwable e) {
50: super (e);
51: // TODO Auto-generated constructor stub
52: }
53:
54: }
|