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