15 lines
474 B
C#
15 lines
474 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using static System.Runtime.InteropServices.JavaScript.JSType;
|
|
|
|
namespace SmallSoftwareContracts.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}") { }
|
|
}
|