void.cat/VoidCat/Model/Exceptions/VoidFileNotFoundException.cs
2022-03-08 13:47:42 +00:00

13 lines
256 B
C#

namespace VoidCat.Model.Exceptions;
/// <summary>
/// Specified file was not found
/// </summary>
public class VoidFileNotFoundException : Exception
{
public VoidFileNotFoundException(Guid id)
{
Id = id;
}
public Guid Id { get; }
}