mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2025-06-22 22:07:28 +02:00
Initial version.
This commit is contained in:
parent
193aaa1a56
commit
b72c67a53e
228 changed files with 25924 additions and 0 deletions
15
TINKLib/Repository/Exception/ResponseException.cs
Normal file
15
TINKLib/Repository/Exception/ResponseException.cs
Normal file
|
@ -0,0 +1,15 @@
|
|||
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;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue