mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-12-23 07:36:31 +01:00
14 lines
312 B
C#
14 lines
312 B
C#
|
using ShareeBike.MultilingualResources;
|
||
|
|
||
|
namespace ShareeBike.Repository.Exception
|
||
|
{
|
||
|
public class DeserializationException : CommunicationException
|
||
|
{
|
||
|
public DeserializationException(System.Exception ex) : base(
|
||
|
string.Format(AppResources.ErrorDeserializingServerResponse, ex.Message),
|
||
|
ex)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|