mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			29 lines
		
	
	
		
			725 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			725 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable enable
 | 
						|
 | 
						|
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)
 | 
						|
        {
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |