We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5c7e2f1 + aa62f2f commit dfdbe91Copy full SHA for dfdbe91
1 file changed
api/src/main/java/com/creatubbles/api/exception/Error.java
@@ -6,7 +6,6 @@
6
public class Error {
7
private Integer status;
8
private String code;
9
- private String source;
10
private String title;
11
private String detail;
12
@@ -18,10 +17,6 @@ public String getCode() {
18
17
return code;
19
}
20
21
- public String getSource() {
22
- return source;
23
- }
24
-
25
public String getTitle() {
26
return title;
27
@@ -35,7 +30,6 @@ public String toString() {
35
30
return "Error{" +
36
31
"status=" + status +
37
32
", code='" + code + '\'' +
38
- ", source='" + source + '\'' +
39
33
", title='" + title + '\'' +
40
34
", detail='" + detail + '\'' +
41
'}';
0 commit comments