public ServiceErrorException() : base(ErrorsMessages.SomethingWrongWithTheService()) { }
public DayOffDataNotFoundException(DateTime from, DateTime to, Country country) : base(ErrorsMessages.CanNotFindDayOffInfo(from, to, country)) { }
public IsDayOffExternalServiceException(Exception innerException) : base(ErrorsMessages.ExternalServiceDidNotHandleTheRequestSeeInnerException(), innerException) { }
public DaysCountMismatchException(int requestDaysCount, int responseDaysCount) : base(ErrorsMessages.DaysCountMismatch(requestDaysCount, responseDaysCount)) { }
public BadDatesRangeException(DateTime from, DateTime to, Country country) : base(ErrorsMessages.DatesRangeNotSupports(from, to, country)) { }