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