wip
This commit is contained in:
parent
0dc41337da
commit
14fd359ea8
28 changed files with 156 additions and 52 deletions
14
Femto.Modules.Auth/Errors/InvalidSessionError.cs
Normal file
14
Femto.Modules.Auth/Errors/InvalidSessionError.cs
Normal file
|
@ -0,0 +1,14 @@
|
|||
using Femto.Common.Domain;
|
||||
|
||||
namespace Femto.Modules.Auth.Errors;
|
||||
|
||||
public class InvalidSessionError : DomainError
|
||||
{
|
||||
private const string Code = "invalid_session";
|
||||
|
||||
public InvalidSessionError()
|
||||
: base("invalid_session") { }
|
||||
|
||||
public InvalidSessionError(Exception e)
|
||||
: base("invalid_session", e) { }
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue