You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-07-07 00:59:18 +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)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|