sharee.bike-App/TINKLib/Services/CopriApi/Exception/RequestNotCachableException.cs
2023-08-31 12:20:06 +02:00

13 lines
307 B
C#

using TINK.MultilingualResources;
namespace TINK.Services.CopriApi.Exception
{
public class RequestNotCachableException : System.Exception
{
public RequestNotCachableException(string nameOfAction) : base(AppResources.ErrorNoWeb, new System.Exception($"{nameOfAction} is not cacheable."))
{
}
}
}