JWT Authentication

This commit is contained in:
AeonLucid
2021-11-01 18:27:08 +01:00
parent 505ae8b2f8
commit e5e3e7dff3
16 changed files with 415 additions and 9 deletions
@@ -0,0 +1,24 @@
using System;
using System.Runtime.Serialization;
namespace Prospect.Server.Api.Exceptions
{
public class ProspectException : Exception
{
public ProspectException()
{
}
protected ProspectException(SerializationInfo info, StreamingContext context) : base(info, context)
{
}
public ProspectException(string message) : base(message)
{
}
public ProspectException(string message, Exception innerException) : base(message, innerException)
{
}
}
}