jellyfin/MediaBrowser.Common/Extensions/ResourceNotFoundException.cs

29 lines
725 B
C#
Raw Normal View History

2020-04-19 09:18:28 -04:00
#nullable enable
using System;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Common.Extensions
{
/// <summary>
2019-12-10 18:13:57 -05:00
/// Class ResourceNotFoundException.
2018-12-27 18:27:57 -05:00
/// </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)
{
}
}
}