summaryrefslogtreecommitdiff
path: root/Gestor.Common/Gestor.Common.Exceptions/AbortException.cs
blob: b66356808bb3d110467e5aeccc17cbec7af5345d (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)
	{
	}
}