package de.ugoe.cs.quest.plugin; /** *

* This exception is thrown in case there is an error during the loading of * QUEST plugins. Note that the failures during the loading may result in an * invalid classpath and this exception should, therefore, be treated with * appropriate care. *

* * @author Steffen Herbold * @version 1.0 */ public class PluginLoaderException extends RuntimeException { /** * @see RuntimeException#RuntimeException(String) */ public PluginLoaderException(String msg) { super(msg); } /** * @see RuntimeException#RuntimeException(Throwable) */ public PluginLoaderException(Throwable throwable) { super(throwable); } /** *

* Id for object serialization. *

*/ private static final long serialVersionUID = 1L; }