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

12 lines
365 B
C#

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";
}
}