19 lines
525 B
C#
19 lines
525 B
C#
|
using Galaeth.Core.Exceptions;
|
||
|
using Galaeth.Services.Constants;
|
||
|
|
||
|
namespace Galaeth.Services.Exceptions;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Thrown when the logging in user is suspended.
|
||
|
/// </summary>
|
||
|
public class UserBannedException : ServiceException
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Initializes a new instance of the <see cref="UserBannedException"/> class.
|
||
|
/// </summary>
|
||
|
public UserBannedException()
|
||
|
: base(ServiceErrorCodes.BannedUser, "You are banned from logging in", System.Net.HttpStatusCode.Unauthorized)
|
||
|
{
|
||
|
}
|
||
|
}
|