| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 | 
							- #pragma warning disable CS1591
 
- using System;
 
- namespace MediaBrowser.Common.Extensions
 
- {
 
-     /// <summary>
 
-     /// Class ResourceNotFoundException
 
-     /// </summary>
 
-     public class ResourceNotFoundException : Exception
 
-     {
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="ResourceNotFoundException" /> class.
 
-         /// </summary>
 
-         public ResourceNotFoundException()
 
-         {
 
-         }
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="ResourceNotFoundException" /> class.
 
-         /// </summary>
 
-         /// <param name="message">The message.</param>
 
-         public ResourceNotFoundException(string message)
 
-             : base(message)
 
-         {
 
-         }
 
-     }
 
-     /// <summary>
 
-     /// Class MethodNotAllowedException
 
-     /// </summary>
 
-     public class MethodNotAllowedException : Exception
 
-     {
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="MethodNotAllowedException" /> class.
 
-         /// </summary>
 
-         public MethodNotAllowedException()
 
-         {
 
-         }
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="MethodNotAllowedException" /> class.
 
-         /// </summary>
 
-         /// <param name="message">The message.</param>
 
-         public MethodNotAllowedException(string message)
 
-             : base(message)
 
-         {
 
-         }
 
-     }
 
-     public class RemoteServiceUnavailableException : Exception
 
-     {
 
-         public RemoteServiceUnavailableException()
 
-         {
 
-         }
 
-         public RemoteServiceUnavailableException(string message)
 
-             : base(message)
 
-         {
 
-         }
 
-     }
 
-     public class RateLimitExceededException : Exception
 
-     {
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="RateLimitExceededException" /> class.
 
-         /// </summary>
 
-         public RateLimitExceededException()
 
-         {
 
-         }
 
-         /// <summary>
 
-         /// Initializes a new instance of the <see cref="RateLimitExceededException" /> class.
 
-         /// </summary>
 
-         /// <param name="message">The message.</param>
 
-         public RateLimitExceededException(string message)
 
-             : base(message)
 
-         {
 
-         }
 
-     }
 
- }
 
 
  |