1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed error pipeline.

This commit is contained in:
kayone 2013-11-11 00:30:58 -08:00
parent 28c6a69e0f
commit e67a805925

View File

@ -17,11 +17,10 @@ public NzbDroneErrorPipeline(Logger logger)
_logger = logger;
}
public Response HandleException(NancyContext context, Exception aggregateException)
public Response HandleException(NancyContext context, Exception exception)
{
var innerException = (aggregateException.InnerException).InnerException;
var apiException = innerException as ApiException;
var apiException = exception as ApiException;
if (apiException != null)
{
@ -29,7 +28,7 @@ public Response HandleException(NancyContext context, Exception aggregateExcepti
return apiException.ToErrorResponse();
}
var validationException = innerException as ValidationException;
var validationException = exception as ValidationException;
if (validationException != null)
{
@ -38,23 +37,23 @@ public Response HandleException(NancyContext context, Exception aggregateExcepti
return validationException.Errors.AsResponse(HttpStatusCode.BadRequest);
}
var clientException = innerException as NzbDroneClientException;
var clientException = exception as NzbDroneClientException;
if (clientException != null)
{
return new ErrorModel
{
Message = innerException.Message,
Description = innerException.ToString()
Message = exception.Message,
Description = exception.ToString()
}.AsResponse((HttpStatusCode)clientException.StatusCode);
}
_logger.FatalException("Request Failed", innerException);
_logger.FatalException("Request Failed", exception);
return new ErrorModel
{
Message = innerException.Message,
Description = innerException.ToString()
Message = exception.Message,
Description = exception.ToString()
}.AsResponse(HttpStatusCode.InternalServerError);
}
}