Skip to content

Commit bb2a316

Browse files
author
mpv1989
committed
Fix issue #132
1 parent 78147a4 commit bb2a316

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/arangodb/ArangoDBException.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ public String getException() {
5353
return entity != null ? entity.getException() : null;
5454
}
5555

56-
public int getResponseCode() {
56+
public Integer getResponseCode() {
5757
return entity != null ? entity.getCode() : null;
5858
}
5959

60-
public int getErrorNum() {
60+
public Integer getErrorNum() {
6161
return entity != null ? entity.getErrorNum() : null;
6262
}
6363

0 commit comments

Comments
 (0)