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