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 results is still not available and will be tried to download /// public class NotAvailableException : ResponseException { public override Types error_type => Types.NotAvailable; public override string message => "not available"; } }