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