mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 09:06:20 +02:00
9 lines
226 B
C#
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)
|
|
{
|
|
}
|