Skip to content

Commit 1a98af0

Browse files
committed
Adding more try catch.
1 parent 9472dc9 commit 1a98af0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

eFormAPI/Installation/CustomActions/CustomAction.cs

+8-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,14 @@ public static ActionResult UpdateCA(Session session)
476476
IncrementProgressBar(session);
477477

478478
session.Log("AddImageHandlers called");
479-
AddImageHandlers(webApiName, webApiLocation);
479+
try
480+
{
481+
AddImageHandlers(webApiName, webApiLocation);
482+
}
483+
catch (Exception ex)
484+
{
485+
MessageBox.Show(ex.Message + " " + ex.StackTrace);
486+
}
480487
AddAspNetCoreSection(webApiName, webApiLocation);
481488

482489
IncrementProgressBar(session);

0 commit comments

Comments
 (0)