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