LANCommander/LANCommander.SDK/Exceptions/ApiVersionMismatchException.cs

16 lines
398 B
C#
Raw Permalink Normal View History

using Semver;
using System;
using System.Collections.Generic;
using System.Text;
namespace LANCommander.SDK.Exceptions
{
public class ApiVersionMismatchException : Exception
{
private SemVersion ClientVersion;
private SemVersion ServerVersion;
public ApiVersionMismatchException(SemVersion client, SemVersion server, string message) : base(message) { }
}
}