aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/Extensions
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-07-22 18:57:22 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-07-22 18:57:22 -0400
commitf0507b644d73dd324c841c358f59cb43befbf57a (patch)
tree773abc525d53b200772153f98552230f4df7c9f8 /MediaBrowser.Common/Extensions
parent812f2bad5b97cb8606bb5a13e3df28ca79a36d51 (diff)
update connect exceptions
Diffstat (limited to 'MediaBrowser.Common/Extensions')
-rw-r--r--MediaBrowser.Common/Extensions/ResourceNotFoundException.cs16
1 files changed, 15 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs
index 86a974229..89e20b1b4 100644
--- a/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs
+++ b/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs
@@ -12,7 +12,7 @@ namespace MediaBrowser.Common.Extensions
/// </summary>
public ResourceNotFoundException()
{
-
+
}
/// <summary>
@@ -26,6 +26,20 @@ namespace MediaBrowser.Common.Extensions
}
}
+ public class RemoteServiceUnavailableException : Exception
+ {
+ public RemoteServiceUnavailableException()
+ {
+
+ }
+
+ public RemoteServiceUnavailableException(string message)
+ : base(message)
+ {
+
+ }
+ }
+
public class RateLimitExceededException : Exception
{
/// <summary>