using System; using System.Collections.Generic; using System.Text; namespace LSFE.Application.Common.Exceptions { public class UnauthorizedException : Exception { public UnauthorizedException(string message) : base(message) { } } }