-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWebApiExceptionHandler.cs
44 lines (38 loc) · 1.24 KB
/
WebApiExceptionHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
using System;
using System.Diagnostics;
using System.Security.Authentication;
namespace Matisco.WebApi.Client
{
public class WebApiExceptionHandler : IWebApiExceptionHandler
{
private readonly bool _rethrowExceptions;
public WebApiExceptionHandler(bool rethrowExceptions)
{
_rethrowExceptions = rethrowExceptions;
}
public void Unauthorized(string route)
{
Debug.WriteLine($"Unauthorized {route}");
if(_rethrowExceptions)
throw new AuthenticationException();
}
public void InteralException(string route, Exception exception)
{
Debug.WriteLine($"InteralException {route}");
if (_rethrowExceptions && exception != null)
throw exception;
}
public void UnexpectedException(string route, Exception exception)
{
Debug.WriteLine($"UnexpectedException {route}");
if (_rethrowExceptions && exception != null)
throw exception;
}
public void Timeout(string route)
{
Debug.WriteLine($"Timeout {route}");
if (_rethrowExceptions)
throw new TimeoutException();
}
}
}