tbf/TracingDB/QuitAppException.cs

13 lines
196 B
C#
Raw Normal View History

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