KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > columba > api > plugin > PluginHandlerNotFoundException


1 /*
2  * Created on 24.03.2003
3  *
4  * To change this generated comment go to
5  * Window>Preferences>Java>Code Generation>Code and Comments
6  */

7 package org.columba.api.plugin;
8
9 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 JavaDoc arg0) {
29         super(arg0);
30     }
31
32 }
Popular Tags