public SeriesNotFoundException(string seriesId, Exception innerException) : base(CalendaringStrings.SeriesNotFound(seriesId), innerException)
 {
     this.seriesId = seriesId;
 }
 public SeriesNotFoundException(string seriesId) : base(CalendaringStrings.SeriesNotFound(seriesId))
 {
     this.seriesId = seriesId;
 }