mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 18:46:30 +01:00
11 lines
266 B
C#
11 lines
266 B
C#
using TINK.Model.Repository.Exception;
|
|
|
|
namespace TINK.Repository.Exception
|
|
{
|
|
public class DeserializationException : CommunicationException
|
|
{
|
|
public DeserializationException(System.Exception ex) : base(ex.Message, ex)
|
|
{
|
|
}
|
|
}
|
|
}
|