Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,11 @@ try {
.withResourcePath("/stage/path").build());

System.out.println("Response: " + response.getBody());
System.out.println("Status: " + response.getHttpResponse.getStatusCode());
System.out.println("Status: " + response.getHttpResponse().getStatusCode());

} catch (GenericApiGatewayException e) { // exception thrown for any non-2xx response
System.out.println(String.format("Client threw exception with message %s and status code %s",
e.getMessage(), e.getStatusCode()));
}

```
```