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

12 lines
365 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 some of unexpected exception was thrown
/// </summary>
public class UnknownException : ResponseException
{
public override Types error_type => Types.Unknown;
public override string message => "unknown exception";
}
}