мелкие правки

This commit is contained in:
2025-02-06 09:54:14 +04:00
parent d8ccc037d3
commit 9b7afd24b1
3 changed files with 3 additions and 3 deletions

View File

@@ -11,4 +11,4 @@ public class ElementExistsException : Exception
ParamName = paramName;
ParamValue = paramValue;
}
}
}

View File

@@ -3,4 +3,4 @@
public class IncorrectDatesException : Exception
{
public IncorrectDatesException(DateTime start, DateTime end) : base($"The end date must be later than the start date.. StartDate: {start:dd.MM.YYYY}. EndDate: {end:dd.MM.YYYY}") { }
}
}

View File

@@ -3,4 +3,4 @@
public class NullListException : Exception
{
public NullListException() : base("The returned list is null") { }
}
}