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