1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 package com.github.jinahya.simple.file.back;
19
20
21
22
23
24
25
26 public class FileBackException extends Exception {
27
28
29 private static final long serialVersionUID = -4261800671834358794L;
30
31
32 public FileBackException() {
33
34 super();
35 }
36
37
38 public FileBackException(final String message) {
39
40 super(message);
41 }
42
43
44 public FileBackException(final String message, final Throwable cause) {
45
46 super(message, cause);
47 }
48
49
50 public FileBackException(final Throwable cause) {
51
52 super(cause);
53 }
54
55
56 public FileBackException(final String message, final Throwable cause,
57 final boolean enableSuppression,
58 final boolean writableStackTrace) {
59
60 super(message, cause, enableSuppression, writableStackTrace);
61 }
62
63
64 }
65