Allowing shows to be edited

This commit is contained in:
Zoe Roux
2020-04-18 05:31:12 +02:00
parent 9b42680b31
commit 7d7265ba12
7 changed files with 96 additions and 32 deletions
@@ -0,0 +1,14 @@
using System;
namespace Kyoo.Models.Exceptions
{
public class ItemNotFound : Exception
{
public override string Message { get; }
public ItemNotFound(string message)
{
Message = message;
}
}
}