mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-21 22:04:31 -04:00
Moved source code under src folder - massive change
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user