forked from ServiceStack/ServiceStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpError.cs
More file actions
80 lines (61 loc) · 2.14 KB
/
HttpError.cs
File metadata and controls
80 lines (61 loc) · 2.14 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
using System;
using System.Collections.Generic;
using System.Net;
using ServiceStack.ServiceHost;
namespace ServiceStack.Common.Web
{
public class HttpError : Exception, IHttpError
{
public HttpError() : this(null) {}
public HttpError(string message)
: this(HttpStatusCode.InternalServerError, message) {}
public HttpError(HttpStatusCode statusCode, string errorCode)
: this(statusCode, errorCode, null) {}
public HttpError(HttpStatusCode statusCode, string errorCode, string errorMessage)
: base(errorMessage ?? errorCode)
{
this.ErrorCode = errorCode;
this.StatusCode = statusCode;
this.Headers = new Dictionary<string, string>();
this.StatusDescription = errorMessage ?? errorCode;
}
public HttpError(HttpStatusCode statusCode, Exception innerException)
: this(innerException.Message, innerException)
{
this.StatusCode = statusCode;
}
public HttpError(string message, Exception innerException) : base(message, innerException)
{
if (innerException != null)
{
this.ErrorCode = innerException.GetType().Name;
}
this.Headers = new Dictionary<string, string>();
}
public string ErrorCode { get; set; }
public string ContentType { get; set; }
public Dictionary<string, string> Headers { get; set; }
public HttpStatusCode StatusCode { get; set; }
public string StatusDescription { get; set; }
public object Response { get; set; }
public string TemplateName { get; set; }
public IContentTypeWriter ResponseFilter { get; set; }
public IRequestContext RequestContext { get; set; }
public IDictionary<string, string> Options
{
get { return this.Headers; }
}
public static Exception NotFound(string message)
{
return new HttpError(HttpStatusCode.NotFound, message);
}
public static Exception Unauthorized(string message)
{
return new HttpError(HttpStatusCode.Unauthorized, message);
}
public static Exception Conflict(string message)
{
return new HttpError(HttpStatusCode.Conflict, message);
}
}
}