sharee.bike-App/SharedBusinessLogic/Services/CopriApi/Exception/RequestNotCachableException.cs
2024-04-09 12:53:23 +02:00

13 lines
319 B
C#

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