8 lines
207 B
C#
8 lines
207 B
C#
namespace UniVerse.Domain.Exceptions;
|
|
|
|
public class UnauthorizedException : Exception
|
|
{
|
|
public UnauthorizedException() : base() { }
|
|
public UnauthorizedException(string message) : base(message) { }
|
|
}
|