vpr-mitarbeiterverwaltung/Server/CommandException.cs

10 lines
154 B
C#

namespace Server;
using System;
public class CommandException : Exception
{
public CommandException(string message) : base(message)
{
}
}