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