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

11 lines
226 B
C#

namespace VoidCat.Model.Exceptions;
/// <summary>
/// Operation is not allowed
/// </summary>
public class VoidNotAllowedException : Exception
{
public VoidNotAllowedException(string message) : base(message)
{
}
}