mirror of
https://git.battle-of-pip.de/root/vpr-mitarbeiterverwaltung.git
synced 2025-06-20 15:53:16 +02:00
10 lines
154 B
C#
10 lines
154 B
C#
namespace Server;
|
|
|
|
using System;
|
|
|
|
public class CommandException : Exception
|
|
{
|
|
public CommandException(string message) : base(message)
|
|
{
|
|
}
|
|
} |