Skip to content

Commit 7fbd946

Browse files
committed
Fix-up for arangodb#178.
1 parent c2111a9 commit 7fbd946

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

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

+7-2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,17 @@
2020

2121
package com.arangodb.entity;
2222

23+
import java.io.Serializable;
24+
2325
/**
2426
* @author Mark Vollmary
2527
*
2628
*/
27-
public class ErrorEntity {
28-
29+
public class ErrorEntity implements Serializable {
30+
/**
31+
*
32+
*/
33+
private static final long serialVersionUID = -5918898261563691261L;
2934
private String errorMessage;
3035
private String exception;
3136
private int code;

0 commit comments

Comments
 (0)