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

18 lines
509 B
C#
Raw Normal View History

2024-01-29 16:27:34 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceShared.Models.Response.Exception
{
/// <summary>
/// This exception will be thrown when results is still not available and will be tried to download
/// </summary>
public class NotAvailableException : ResponseException
{
public override Types error_type => Types.NotAvailable;
public override string message => "not available";
}
}