Files
tbf/Common/QuitAppException.cs
T

13 lines
193 B
C#

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