mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-08-08 19:22:05 +02:00
13 lines
256 B
C#
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; }
|
|
} |