void.cat/VoidCat/Model/Exceptions/VoidNotAllowedException.cs
2022-01-25 23:39:51 +00:00

8 lines
168 B
C#

namespace VoidCat.Model.Exceptions;
public class VoidNotAllowedException : Exception
{
public VoidNotAllowedException(string message) : base(message)
{
}
}