示例#1
0
 public ConflictCalendarException(CalendarWarning warning, List <Pomodoro> existingPomodoros)
     : base(warning, "Conflict found between proposed interval and existing pomodoros.")
 {
     ExistingPomodoros = existingPomodoros;
 }
示例#2
0
 public CalendarException(CalendarWarning warning, string message)
     : base(message)
 {
     Warning = warning;
 }