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