11 lines
255 B
C#
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) { }
|
|
}
|
|
}
|