patbef-ServiceOutside/ServiceShared/Models/Response/Exception/InvalidClientException.cs

12 lines
362 B
C#
Raw Permalink Normal View History

2024-01-29 16:27:34 +01:00
namespace ServiceShared.Models.Response.Exception
{
/// <summary>
/// This exception will be thrown when connected client is invalid
/// </summary>
public class InvalidClientException : ResponseException
{
public override Types error_type => Types.InvalidClient;
public override string message => "invalid client";
}
}