Added auth/authenticate endpoint
This commit is contained in:
15
Birdmap/Exceptions/AuthenticationException.cs
Normal file
15
Birdmap/Exceptions/AuthenticationException.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Birdmap.Exceptions
|
||||
{
|
||||
public class AuthenticationException : Exception
|
||||
{
|
||||
public AuthenticationException()
|
||||
: base("Username or password is incorrect.")
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user