mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 17:16:22 +02:00
8 lines
224 B
C#
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)
|
|
{
|
|
} |