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