source: trunk/autoquest-plugin-core/src/main/java/de/ugoe/cs/autoquest/plugin/PluginLoaderException.java @ 922

Last change on this file since 922 was 922, checked in by sherbold, 12 years ago
  • renaming of packages from de.ugoe.cs.quest to de.ugoe.cs.autoquest
  • Property svn:mime-type set to text/plain
File size: 798 bytes
Line 
1package de.ugoe.cs.autoquest.plugin;
2
3/**
4 * <p>
5 * This exception is thrown in case there is an error during the loading of
6 * QUEST plugins. Note that the failures during the loading may result in an
7 * invalid classpath and this exception should, therefore, be treated with
8 * appropriate care.
9 * </p>
10 *
11 * @author Steffen Herbold
12 * @version 1.0
13 */
14public class PluginLoaderException extends RuntimeException {
15
16        /**
17         * @see RuntimeException#RuntimeException(String)
18         */
19        public PluginLoaderException(String msg) {
20                super(msg);
21        }
22       
23        /**
24         * @see RuntimeException#RuntimeException(Throwable)
25         */
26        public PluginLoaderException(Throwable throwable) {
27                super(throwable);
28        }
29
30        /**
31         * <p>
32         * Id for object serialization.
33         * </p>
34         */
35        private static final long serialVersionUID = 1L;
36
37}
Note: See TracBrowser for help on using the repository browser.