Files
WatchIt/WatchIt.WebAPI/Services/Tokens/Exceptions/TokenNotFoundException.cs

6 lines
157 B
C#
Raw Normal View History

namespace WatchIt.WebAPI.Services.Tokens.Exceptions;
2024-04-27 22:36:16 +02:00
public class TokenNotFoundException : Exception
{
public TokenNotFoundException() : base() { }
}