Skip to content

Commit

Permalink
Merge pull request #79 from data-integrations/error-prop-semicolon-fix
Browse files Browse the repository at this point in the history
servicenowapiexception semicolon bug fix
  • Loading branch information
harshdeeppruthi authored Aug 6, 2024
2 parents c65c7f1 + 3235be9 commit 033ba37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public ServiceNowAPIException(String message, @Nullable HttpResponse httpRespons
}

public ServiceNowAPIException(Throwable t, @Nullable HttpResponse httpResponse) {
this(null, t, httpResponse, false)
this(null, t, httpResponse, false);
}

public ServiceNowAPIException(String message, Throwable t,
Expand Down

0 comments on commit 033ba37

Please sign in to comment.