LANCommander/LANCommander.SDK/Exceptions/InstallCanceledException.cs

12 lines
255 B
C#
Raw Permalink Normal View History

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