sharee.bike-App/TINKLib/Services/CopriApi/Exception/RequestNotCachableException.cs

13 lines
307 B
C#
Raw Normal View History

2022-10-26 20:53:18 +02:00
using TINK.MultilingualResources;
namespace TINK.Services.CopriApi.Exception
{
public class RequestNotCachableException : System.Exception
{
2023-08-31 12:20:06 +02:00
public RequestNotCachableException(string nameOfAction) : base(AppResources.ErrorNoWeb, new System.Exception($"{nameOfAction} is not cacheable."))
2022-10-26 20:53:18 +02:00
{
}
}
}