LANCommander/LANCommander.SDK/Exceptions/InstallCanceledException.cs
2024-01-25 00:46:10 -06:00

11 lines
255 B
C#

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