2013-02-21 01:33:05 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-22 19:14:58 +00:00
|
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|