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