We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78147a4 commit bb2a316Copy full SHA for bb2a316
src/main/java/com/arangodb/ArangoDBException.java
@@ -53,11 +53,11 @@ public String getException() {
53
return entity != null ? entity.getException() : null;
54
}
55
56
- public int getResponseCode() {
+ public Integer getResponseCode() {
57
return entity != null ? entity.getCode() : null;
58
59
60
- public int getErrorNum() {
+ public Integer getErrorNum() {
61
return entity != null ? entity.getErrorNum() : null;
62
63
0 commit comments