LANCommander/LANCommander.SDK/VPN/Exceptions/ClientConnectionException.cs

12 lines
261 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.VPN.Exceptions
{
public class ClientConnectionException : Exception
{
public ClientConnectionException(string message) : base(message) { }
}
}