示例#1
0
 public ServiceErrorException() : base(ErrorsMessages.SomethingWrongWithTheService())
 {
 }
示例#2
0
 public DayOffDataNotFoundException(DateTime from, DateTime to, Country country) 
     : base(ErrorsMessages.CanNotFindDayOffInfo(from, to, country))
 {
 }
示例#3
0
 public IsDayOffExternalServiceException(Exception innerException)
     : base(ErrorsMessages.ExternalServiceDidNotHandleTheRequestSeeInnerException(), innerException)
 {
 }
示例#4
0
 public DaysCountMismatchException(int requestDaysCount, int responseDaysCount)
     : base(ErrorsMessages.DaysCountMismatch(requestDaysCount, responseDaysCount))
 {
 }
示例#5
0
 public BadDatesRangeException(DateTime from, DateTime to, Country country)
     : base(ErrorsMessages.DatesRangeNotSupports(from, to, country))
 {
 }