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