using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ServiceShared.Models.Response.Exception { /// /// This exception will be thrown when max limit of opened(not pickedup) request was reached by device /// public class MaxOpenedRequestLimitException : ResponseException { public override Types error_type => Types.MaxOpenedRequestLimit; public override string message => "max opened request limit"; } }