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

8 lines
224 B
C#

namespace RemoteExec.Client.Exceptions;
/// <summary>
/// Exception thrown when a remote method execution fails on the server.
/// </summary>
public class RemoteExecutionException(string message) : Exception(message)
{
}