You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
723 B
29 lines
723 B
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|