1 | public class ExtensionHandlerNotFoundException extends PluginException {↵ | | 1 | public class FolderInconsistentException extends Exception {↵
|
|
2 | public ExtensionHandlerNotFound↵ | | 2 | /**↵
|
| | | 3 | * Constructs the FolderInconsistentException.java.↵
|
| | | 4 | * ↵
|
| | | 5 | * ↵
|
| | | 6 | */↵
|
3 | Exception() {↵ | | 7 | public FolderInconsistentException() {↵
|
4 | super();↵ | | 8 | super();↵
|
|
5 | }↵ | | |
|
|
6 | public ExtensionHandlerNotFound↵ | | 9 | }↵
|
|
| | | 10 | /**↵
|
| | | 11 | * Constructs the FolderInconsistentException.java.↵
|
| | | 12 | * ↵
|
| | | 13 | * @param arg0↵
|
| | | 14 | */↵
|
7 | Exception(String message) {↵ | | 15 | public FolderInconsistentException(String ↵
|
8 | super(message);↵ | | |
|
|
9 | }↵ | | |
|
|
10 | public ExtensionHandlerNotFound↵ | | 16 | arg0) {↵
|
| | | 17 | super(arg0);↵
|
| | | 18 | }↵
|
|
| | | 19 | /**↵
|
| | | 20 | * Constructs the FolderInconsistentException.java.↵
|
| | | 21 | * ↵
|
| | | 22 | * @param arg0↵
|
| | | 23 | * @param arg1↵
|
| | | 24 | */↵
|
11 | Exception(String message, Throwable cause) {↵ | | 25 | public FolderInconsistentException(String arg0, Throwable ↵
|
12 | super(message, cause);↵ | | |
|
|
13 | }↵ | | |
|
|
14 | public ExtensionHandlerNotFound↵ | | 26 | arg1) {↵
|
| | | 27 | super(arg0, arg1);↵
|
| | | 28 | }↵
|
|
| | | 29 | /**↵
|
| | | 30 | * Constructs the FolderInconsistentException.java.↵
|
| | | 31 | * ↵
|
| | | 32 | * @param arg0↵
|
| | | 33 | */↵
|
15 | Exception(Throwable cause) {↵ | | 34 | public FolderInconsistentException(Throwable ↵
|
16 | ↵ | | 35 | arg0) {↵
|
17 | super(cause) | | 36 | super(arg0)
|