You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
using System;
|
|
using System.Linq;
|
|
using Nancy;
|
|
using Nancy.Responses;
|
|
using Newtonsoft.Json;
|
|
using NzbDrone.Api.QualityType;
|
|
|
|
namespace NzbDrone.Api.ErrorManagment
|
|
{
|
|
public abstract class ApiException : Exception
|
|
{
|
|
public object Content { get; private set; }
|
|
|
|
|
|
public HttpStatusCode StatusCode { get; private set; }
|
|
|
|
protected ApiException(HttpStatusCode statusCode, object content = null)
|
|
: base(GetMessage(statusCode, content))
|
|
{
|
|
StatusCode = statusCode;
|
|
Content = content;
|
|
}
|
|
|
|
public JsonResponse<ErrorModel> ToErrorResponse()
|
|
{
|
|
return new ErrorModel(this).AsResponse(StatusCode);
|
|
}
|
|
|
|
private static string GetMessage(HttpStatusCode statusCode, object content)
|
|
{
|
|
var result = statusCode.ToString();
|
|
|
|
if (content != null)
|
|
{
|
|
result = result + " :" + JsonConvert.SerializeObject(content);
|
|
}
|
|
|
|
return result;
|
|
}
|
|
}
|
|
} |