Add XML docs

This commit is contained in:
Stone_Red
2025-12-23 15:15:18 +01:00
parent 55f26b3a92
commit 3e339b2b7a
26 changed files with 377 additions and 4 deletions
@@ -1,5 +1,8 @@
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)
{
}
@@ -1,5 +1,8 @@
namespace RemoteExec.Client.Exceptions;
/// <summary>
/// Exception thrown when a remote method execution fails on the server.
/// </summary>
public class RemoteExecutionException(string message) : Exception(message)
{
}