summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Common/Gestor.Common.Exceptions/AbortException.cs
blob: 6fc251198803e8906c5bb1de4172c93b2ee86f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

namespace Gestor.Common.Exceptions
{
	public class AbortException : Exception
	{
		public AbortException() : base(string.Empty)
		{
		}
	}
}