Skip to content

Commit 7b41375

Browse files
committed
excep
1 parent 067bd3a commit 7b41375

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ScheduledTasks/Exception/ScheduleAlreadyExistException.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)