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