birbmap/Birdmap.BLL/Exceptions/AuthenticationException.cs

13 lines
238 B
C#
Raw Normal View History

2020-10-21 17:04:54 +02:00
using System;
namespace Birdmap.BLL.Exceptions
2020-10-21 17:04:54 +02:00
{
public class AuthenticationException : Exception
{
public AuthenticationException()
: base("Username or password is incorrect.")
{
}
}
}