1 /*2 * Created on 24.03.20033 *4 * To change this generated comment go to5 * Window>Preferences>Java>Code Generation>Code and Comments6 */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 requested13 * plugin handler.14 * 15 * @author fdietz16 */17 public class PluginHandlerNotFoundException extends BaseException {18 /**19 * 20 */21 public PluginHandlerNotFoundException() {22 super();23 }24 25 /**26 * @param arg027 */28 public PluginHandlerNotFoundException(String arg0) {29 super(arg0);30 }31 32 }