6 lines
175 B
C#
6 lines
175 B
C#
|
|
namespace WatchIt.WebAPI.Services.Utility.Tokens.Exceptions;
|
|||
|
|
|
|||
|
|
public class TokenNotExtendableException : Exception
|
|||
|
|
{
|
|||
|
|
public TokenNotExtendableException() : base() { }
|
|||
|
|
}
|