Files
RemoteExec/RemoteExec.Client/RemoteExecutionException.cs
T
2025-12-19 21:48:37 +01:00

5 lines
111 B
C#

namespace RemoteExec.Client;
public class RemoteExecutionException(string message) : Exception(message)
{
}