sharee.bike-App/TINKLib/Services/CopriApi/Exception/RequestNotCachableException.cs
2022-10-26 20:53:18 +02:00

13 lines
323 B
C#

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."))
{
}
}
}