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.
1 parent 4189f93 commit f165aa2Copy full SHA for f165aa2
api/src/main/java/com/messagebird/objects/ErrorReport.java
@@ -1,14 +1,20 @@
1
package com.messagebird.objects;
2
3
import com.fasterxml.jackson.annotation.JsonInclude;
4
+
5
+import java.io.Serializable;
6
7
/**
8
* When MessageBird returns a 4xx, you will find a list of any error codes in your return dataset.
9
* you will receive a list of errors from the API in such case.
10
*
11
* Created by rvt on 1/5/15.
12
*/
13
@JsonInclude(JsonInclude.Include.NON_EMPTY)
-public class ErrorReport {
14
+public class ErrorReport implements Serializable {
15
16
+ private static final long serialVersionUID = -8611665867089703268L;
17
18
private Integer code;
19
private String description;
20
private String parameter;
0 commit comments