mirror of
				https://github.com/zoriya/Kyoo.git
				synced 2025-11-04 03:27:14 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			207 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			207 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace Kyoo.Models.Exceptions
 | 
						|
{
 | 
						|
	public class ItemNotFound : Exception
 | 
						|
	{
 | 
						|
		public override string Message { get; }
 | 
						|
 | 
						|
		public ItemNotFound(string message)
 | 
						|
		{
 | 
						|
			Message = message;
 | 
						|
		}
 | 
						|
	}
 | 
						|
} |