Skip to content

Commit 353cb5b

Browse files
committed
Re-throw execption
1 parent 98b0d01 commit 353cb5b

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/Atc.CodingRules.Updater/DirectoryBuildPropsHelper.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ public static void HandleFile(
8080
catch (Exception ex)
8181
{
8282
logger.LogError($"{EmojisConstants.Error} {area} - {ex.Message}");
83+
throw;
8384
}
8485
}
8586

src/Atc.CodingRules.Updater/EditorConfigHelper.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ public static void HandleFile(
5050
catch (Exception ex)
5151
{
5252
logger.LogError($"{EmojisConstants.Error} {area} - {ex.Message}");
53+
throw;
5354
}
5455
}
5556

@@ -92,6 +93,7 @@ public static void HandleFile(
9293
catch (Exception ex)
9394
{
9495
logger.LogError($"{EmojisConstants.Error} {area} - {ex.Message}");
96+
throw;
9597
}
9698
}
9799

0 commit comments

Comments
 (0)