public SeriesNotFoundException(string seriesId, Exception innerException) : base(CalendaringStrings.SeriesNotFound(seriesId), innerException)
 {
     this.seriesId = seriesId;
 }
Exemplo n.º 2
0
 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;
 }
Exemplo n.º 4
0
 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;
 }
Exemplo n.º 5
0
 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;
 }
Exemplo n.º 8
0
 public InvalidPopupReminderSettingsCountException(int count, Exception innerException) : base(CalendaringStrings.InvalidPopupReminderSettingsCount(count), innerException)
 {
     this.count = count;
 }