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.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user