forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathServiceResponseException.cs
More file actions
47 lines (39 loc) · 1.38 KB
/
ServiceResponseException.cs
File metadata and controls
47 lines (39 loc) · 1.38 KB
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
45
46
47
using System;
using ServiceStack.Common.Extensions;
using ServiceStack.ServiceInterface.ServiceModel;
namespace ServiceStack.ServiceInterface
{
public class ServiceResponseException
: Exception
{
public ServiceResponseException()
{
}
public ServiceResponseException(string message)
: base(message)
{
}
public ServiceResponseException(string errorCode, string errorMessage)
: base(GetErrorMessage(errorCode, errorMessage))
{
this.ErrorCode = errorCode;
}
public ServiceResponseException(string errorCode, string errorMessage, string serviceStackTrace)
: base(errorMessage)
{
this.ErrorCode = errorCode;
this.ServiceStackTrace = serviceStackTrace;
}
public ServiceResponseException(ResponseStatus responseStatus)
: base(GetErrorMessage(responseStatus.ErrorCode, responseStatus.Message))
{
this.ErrorCode = responseStatus.ErrorCode;
}
private static string GetErrorMessage(string errorCode, string errorMessage)
{
return errorMessage ?? (errorCode != null ? errorCode.ToEnglish() : null);
}
public string ErrorCode { get; set; }
public string ServiceStackTrace { get; set; }
}
}