mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04: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;
|
|
}
|
|
}
|
|
} |