File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
src/ScheduledTasks/Exception Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,24 +6,24 @@ namespace Microsoft.DurableTask.ScheduledTasks;
66/// <summary>
77/// Exception thrown when attempting to create a schedule with an ID that already exists.
88/// </summary>
9- public class ScheduleAlreadyExistException : InvalidOperationException
9+ public class ScheduleAlreadyExistsException : InvalidOperationException
1010{
1111 /// <summary>
12- /// Initializes a new instance of the <see cref="ScheduleAlreadyExistException "/> class.
12+ /// Initializes a new instance of the <see cref="ScheduleAlreadyExistsException "/> class.
1313 /// </summary>
1414 /// <param name="scheduleId">The ID of the schedule that already exists.</param>
15- public ScheduleAlreadyExistException ( string scheduleId )
15+ public ScheduleAlreadyExistsException ( string scheduleId )
1616 : base ( $ "A schedule with ID '{ scheduleId } ' already exists.")
1717 {
1818 this . ScheduleId = scheduleId ;
1919 }
2020
2121 /// <summary>
22- /// Initializes a new instance of the <see cref="ScheduleAlreadyExistException "/> class.
22+ /// Initializes a new instance of the <see cref="ScheduleAlreadyExistsException "/> class.
2323 /// </summary>
2424 /// <param name="scheduleId">The ID of the schedule that already exists.</param>
2525 /// <param name="innerException">The exception that is the cause of the current exception.</param>
26- public ScheduleAlreadyExistException ( string scheduleId , Exception innerException )
26+ public ScheduleAlreadyExistsException ( string scheduleId , Exception innerException )
2727 : base ( $ "A schedule with ID '{ scheduleId } ' already exists.", innerException )
2828 {
2929 this . ScheduleId = scheduleId ;
You can’t perform that action at this time.
0 commit comments