1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 03:52:33 +02:00
Radarr/Exceptron.Client/ExceptronApiException.cs
2013-06-05 21:33:16 -07:00

17 lines
404 B
C#

using System;
using System.Net;
namespace Exceptron.Client
{
public class ExceptronApiException : Exception
{
public ExceptronApiException(WebException innerException, string message)
: base(message, innerException)
{
Response = (HttpWebResponse)innerException.Response;
}
public HttpWebResponse Response { get; private set; }
}
}