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