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