Starting the scaffolding of controlling the ZeroTier One Windows service to connect to a network.
11 lines
276 B
C#
11 lines
276 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace LANCommander.SDK.VPN.Exceptions.ZeroTier
|
|
{
|
|
public class ServiceNotInstalledException : Exception
|
|
{
|
|
public ServiceNotInstalledException(string message) : base(message) { }
|
|
}
|
|
}
|