11 lines
308 B
C#
11 lines
308 B
C#
using System;
|
|
|
|
namespace CandyHouseBase.Exceptions;
|
|
|
|
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}")
|
|
{
|
|
}
|
|
} |