patbef-ServiceOutside/ServiceShared/Models/Response/Exception/MaxOpenedRequestLimitExcept...

18 lines
541 B
C#
Raw Permalink 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 max limit of opened(not pickedup) request was reached by device
/// </summary>
public class MaxOpenedRequestLimitException : ResponseException
{
public override Types error_type => Types.MaxOpenedRequestLimit;
public override string message => "max opened request limit";
}
}