mirror of https://github.com/lidarr/Lidarr
31 lines
749 B
C#
31 lines
749 B
C#
using System;
|
|
using System.Linq;
|
|
using NLog;
|
|
using Nancy;
|
|
|
|
namespace NzbDrone.Api.ErrorManagment
|
|
{
|
|
public class ErrorPipeline
|
|
{
|
|
private readonly Logger _logger;
|
|
|
|
public ErrorPipeline(Logger logger)
|
|
{
|
|
_logger = logger;
|
|
}
|
|
|
|
public Response HandleException(NancyContext context, Exception exception)
|
|
{
|
|
var apiException = exception as ApiException;
|
|
|
|
if (apiException != null)
|
|
{
|
|
_logger.WarnException("API Error", apiException);
|
|
return apiException.ToErrorResponse();
|
|
}
|
|
|
|
_logger.ErrorException("Unexpected error", exception);
|
|
return null;
|
|
}
|
|
}
|
|
} |