mirror of
https://git.v0l.io/Kieran/void.cat.git
synced 2025-08-08 14:51:51 +02:00
11 lines
226 B
C#
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)
|
|
{
|
|
}
|
|
} |