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

17 lines
336 B
C#

namespace VoidCat.Model.Exceptions;
/// <summary>
/// Specified id was not in the correct format
/// </summary>
public class VoidInvalidIdException : Exception
{
public VoidInvalidIdException(string id)
{
Id = id;
}
/// <summary>
/// The id in question
/// </summary>
public string Id { get; }
}