using System;
namespace MediaBrowser.Common.Extensions
{
///
/// Class ResourceNotFoundException
///
public class ResourceNotFoundException : Exception
{
///
/// Initializes a new instance of the class.
///
public ResourceNotFoundException()
{
}
///
/// Initializes a new instance of the class.
///
/// The message.
public ResourceNotFoundException(string message)
: base(message)
{
}
}
public class RemoteServiceUnavailableException : Exception
{
public RemoteServiceUnavailableException()
{
}
public RemoteServiceUnavailableException(string message)
: base(message)
{
}
}
public class RateLimitExceededException : Exception
{
///
/// Initializes a new instance of the class.
///
public RateLimitExceededException()
{
}
///
/// Initializes a new instance of the class.
///
/// The message.
public RateLimitExceededException(string message)
: base(message)
{
}
}
}