01: /*
02: * Created on 24.03.2003
03: *
04: * To change this generated comment go to
05: * Window>Preferences>Java>Code Generation>Code and Comments
06: */
07: package org.columba.api.plugin;
08:
09: import org.columba.api.exception.BaseException;
10:
11: /**
12: * {@link IPluginManager}throws this exception if it can't find the requested
13: * plugin handler.
14: *
15: * @author fdietz
16: */
17: public class PluginHandlerNotFoundException extends BaseException {
18: /**
19: *
20: */
21: public PluginHandlerNotFoundException() {
22: super ();
23: }
24:
25: /**
26: * @param arg0
27: */
28: public PluginHandlerNotFoundException(String arg0) {
29: super(arg0);
30: }
31:
32: }
|