mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
21 lines
533 B
C#
21 lines
533 B
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Net;
|
||
|
using System.Text;
|
||
|
using NzbDrone.Common.Exceptions;
|
||
|
|
||
|
namespace NzbDrone.Core.Exceptions
|
||
|
{
|
||
|
public class BadRequestException : DownstreamException
|
||
|
{
|
||
|
public BadRequestException(HttpStatusCode statusCode, string message) : base(statusCode, message)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public BadRequestException(HttpStatusCode statusCode, string message, params object[] args) : base(statusCode, message, args)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|