From d6af24cd91fddc4d0111477edfe2acde207d11e0 Mon Sep 17 00:00:00 2001 From: TekH Date: Mon, 30 Mar 2026 14:33:23 +0200 Subject: [PATCH] Remove PlaceholderResolutionException class Deleted the PlaceholderResolutionException class and its namespace. This exception was previously used for unresolved placeholders due to missing properties. All related properties and custom messages have been removed. --- .../Exceptions/PlaceholderResolutionException.cs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/ReC.Application/Common/Exceptions/PlaceholderResolutionException.cs diff --git a/src/ReC.Application/Common/Exceptions/PlaceholderResolutionException.cs b/src/ReC.Application/Common/Exceptions/PlaceholderResolutionException.cs deleted file mode 100644 index 33a5f00..0000000 --- a/src/ReC.Application/Common/Exceptions/PlaceholderResolutionException.cs +++ /dev/null @@ -1,11 +0,0 @@ -namespace ReC.Application.Common.Exceptions; - -public class PlaceholderResolutionException(string placeholder, string columnName, string input) - : Exception($"Failed to resolve placeholder '{placeholder}'. No object contains a property with column name '{columnName}'. Input: '{input}'") -{ - public string Placeholder { get; } = placeholder; - - public string ColumnName { get; } = columnName; - - public string Input { get; } = input; -}