Skip to content

Commit

Permalink
Fix issue arangodb#132
Browse files Browse the repository at this point in the history
  • Loading branch information
mpv1989 committed Jun 30, 2017
1 parent 78147a4 commit bb2a316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/com/arangodb/ArangoDBException.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,11 +53,11 @@ public String getException() {
return entity != null ? entity.getException() : null;
}

public int getResponseCode() {
public Integer getResponseCode() {
return entity != null ? entity.getCode() : null;
}

public int getErrorNum() {
public Integer getErrorNum() {
return entity != null ? entity.getErrorNum() : null;
}

Expand Down

0 comments on commit bb2a316

Please sign in to comment.