We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2111a9 commit 266e2c4Copy full SHA for 266e2c4
ChangeLog
@@ -1,3 +1,7 @@
1
+v4.3.4 (2018-xx-xx)
2
+---------------------------
3
+* made ErrorEntity serializable (Issue #178)
4
+
5
v4.3.3 (2018-02-01)
6
---------------------------
7
* added CollectionCreateOptions.distributeShardsLike(String) (Issue #170)
src/main/java/com/arangodb/entity/ErrorEntity.java
@@ -20,11 +20,15 @@
20
21
package com.arangodb.entity;
22
23
+import java.io.Serializable;
24
25
/**
26
* @author Mark Vollmary
27
*
28
*/
-public class ErrorEntity {
29
+public class ErrorEntity implements Serializable {
30
31
+ private static final long serialVersionUID = -5918898261563691261L;
32
33
private String errorMessage;
34
private String exception;
0 commit comments