mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
13 lines
323 B
C#
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."))
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|