tbf/Common/QuitAppException.cs

13 lines
193 B
C#
Raw Normal View History

using System;
namespace Common
{
public class QuitAppException : Exception
{
public QuitAppException(string message)
: base(message)
{
}
}
}