From 3235be919211787a5b0fa8ac3a1fd44ecb2da96d Mon Sep 17 00:00:00 2001 From: Harshdeep Singh Pruthi Date: Tue, 6 Aug 2024 16:37:31 +0530 Subject: [PATCH] servicenowapiexception semicolon bug fix --- .../plugin/servicenow/apiclient/ServiceNowAPIException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/io/cdap/plugin/servicenow/apiclient/ServiceNowAPIException.java b/src/main/java/io/cdap/plugin/servicenow/apiclient/ServiceNowAPIException.java index c68b54d..994eda9 100644 --- a/src/main/java/io/cdap/plugin/servicenow/apiclient/ServiceNowAPIException.java +++ b/src/main/java/io/cdap/plugin/servicenow/apiclient/ServiceNowAPIException.java @@ -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,