mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
12 lines
307 B
C#
12 lines
307 B
C#
|
|
using TINK.MultilingualResources;
|
|
|
|
namespace TINK.Services.CopriApi.Exception
|
|
{
|
|
public class RequestNotCachableException : System.Exception
|
|
{
|
|
public RequestNotCachableException(string nameOfAction) : base(AppResources.ErrorNoWeb, new System.Exception($"{nameOfAction} is not cacheable."))
|
|
{
|
|
}
|
|
}
|
|
}
|