Files
RemoteExec/RemoteExec.Client/Exceptions/MaxRetriesException.cs
T
2025-12-23 15:15:18 +01:00

9 lines
226 B
C#

namespace RemoteExec.Client.Exceptions;
/// <summary>
/// Exception thrown when a task exceeds the maximum number of retry attempts.
/// </summary>
public class MaxRetriesException(string message) : Exception(message)
{
}