public SeriesNotFoundException(string seriesId, Exception innerException) : base(CalendaringStrings.SeriesNotFound(seriesId), innerException) { this.seriesId = seriesId; }
public UnableToFindUserException(ADOperationErrorCode operationErrorCode, Exception innerException) : base(CalendaringStrings.UnableToFindUser(operationErrorCode), innerException) { this.operationErrorCode = operationErrorCode; }
public SeriesNotFoundException(string seriesId) : base(CalendaringStrings.SeriesNotFound(seriesId)) { this.seriesId = seriesId; }
public CannotDeleteSpecialCalendarGroupException(StoreId groupId, Guid groupClassId, string groupName, Exception innerException) : base(CalendaringStrings.CannotDeleteWellKnownCalendarGroup(groupId, groupClassId, groupName), innerException) { this.groupId = groupId; this.groupClassId = groupClassId; this.groupName = groupName; }
public FolderNotFoundException(string folderType, Exception innerException) : base(CalendaringStrings.FolderNotFound(folderType), innerException) { this.folderType = folderType; }
public CalendarNameAlreadyInUseException(string name, Exception innerException) : base(CalendaringStrings.CalendarNameAlreadyInUse(name), innerException) { this.name = name; }
public CalendarGroupIsNotEmptyException(StoreId groupId, Guid groupClassId, string groupName, int calendarsCount, Exception innerException) : base(CalendaringStrings.CalendarGroupIsNotEmpty(groupId, groupClassId, groupName, calendarsCount), innerException) { this.groupId = groupId; this.groupClassId = groupClassId; this.groupName = groupName; this.calendarsCount = calendarsCount; }
public InvalidPopupReminderSettingsCountException(int count, Exception innerException) : base(CalendaringStrings.InvalidPopupReminderSettingsCount(count), innerException) { this.count = count; }