mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-16 15:16:34 +01:00
16 lines
399 B
C#
16 lines
399 B
C#
|
using TINK.Model.Repository.Response;
|
|||
|
|
|||
|
namespace TINK.Repository.Exception
|
|||
|
{
|
|||
|
public class ResponseException : System.Exception
|
|||
|
{
|
|||
|
private readonly ResponseBase _response;
|
|||
|
public ResponseException(ResponseBase response, string message) : base(message)
|
|||
|
{
|
|||
|
_response = response;
|
|||
|
}
|
|||
|
|
|||
|
public string Response => _response.response_text;
|
|||
|
}
|
|||
|
}
|