Skip to content

Commit 266e2c4

Browse files
author
mpv1989
committed
Make ErrorEntity serializable (Issue #178)
1 parent c2111a9 commit 266e2c4

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

ChangeLog

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v4.3.4 (2018-xx-xx)
2+
---------------------------
3+
* made ErrorEntity serializable (Issue #178)
4+
15
v4.3.3 (2018-02-01)
26
---------------------------
37
* added CollectionCreateOptions.distributeShardsLike(String) (Issue #170)

src/main/java/com/arangodb/entity/ErrorEntity.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,15 @@
2020

2121
package com.arangodb.entity;
2222

23+
import java.io.Serializable;
24+
2325
/**
2426
* @author Mark Vollmary
2527
*
2628
*/
27-
public class ErrorEntity {
29+
public class ErrorEntity implements Serializable {
30+
31+
private static final long serialVersionUID = -5918898261563691261L;
2832

2933
private String errorMessage;
3034
private String exception;

0 commit comments

Comments
 (0)