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

13 lines
323 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
{
public RequestNotCachableException(string nameOfAction) : base(AppResources.ErrorNotConnectedToNetwork, new System.Exception($"{nameOfAction} is not cacheable."))
{
}
}
}