Skip to content

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
yildizsc committed Dec 11, 2023
1 parent e241b5f commit 962c808
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/main/java/com/webex/events/ErrorResponse.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
public class ErrorResponse {
public String message;
public JsonNode errors;

public JsonNode extensions;

public String getMessage() {
return this.message;
}

public String getCode() {
if (extensions == null) {
return "";
Expand Down

0 comments on commit 962c808

Please sign in to comment.