aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Net/HttpException.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-11-14 14:30:34 -0700
committercrobibero <cody@robibe.ro>2020-11-14 14:30:34 -0700
commit95a2de757f8142fed4ef19b71ac2d483fa152674 (patch)
tree1e07f61a7046458bdc0ba0b276785a8c161353a2 /MediaBrowser.Model/Net/HttpException.cs
parent843847fc9311ecd04d262d8b04698d88d6332efc (diff)
remove custom HttpException
Diffstat (limited to 'MediaBrowser.Model/Net/HttpException.cs')
-rw-r--r--MediaBrowser.Model/Net/HttpException.cs42
1 files changed, 0 insertions, 42 deletions
diff --git a/MediaBrowser.Model/Net/HttpException.cs b/MediaBrowser.Model/Net/HttpException.cs
deleted file mode 100644
index 48ff5d51c..000000000
--- a/MediaBrowser.Model/Net/HttpException.cs
+++ /dev/null
@@ -1,42 +0,0 @@
-using System;
-using System.Net;
-
-namespace MediaBrowser.Model.Net
-{
- /// <summary>
- /// Class HttpException.
- /// </summary>
- public class HttpException : Exception
- {
- /// <summary>
- /// Gets or sets the status code.
- /// </summary>
- /// <value>The status code.</value>
- public HttpStatusCode? StatusCode { get; set; }
-
- /// <summary>
- /// Gets or sets a value indicating whether this instance is timed out.
- /// </summary>
- /// <value><c>true</c> if this instance is timed out; otherwise, <c>false</c>.</value>
- public bool IsTimedOut { get; set; }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="HttpException" /> class.
- /// </summary>
- /// <param name="message">The message.</param>
- /// <param name="innerException">The inner exception.</param>
- public HttpException(string message, Exception innerException)
- : base(message, innerException)
- {
- }
-
- /// <summary>
- /// Initializes a new instance of the <see cref="HttpException" /> class.
- /// </summary>
- /// <param name="message">The message.</param>
- public HttpException(string message)
- : base(message)
- {
- }
- }
-}