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