13 lines
193 B
C#
13 lines
193 B
C#
using System;
|
|
|
|
namespace Common
|
|
{
|
|
public class QuitAppException : Exception
|
|
{
|
|
public QuitAppException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|