ComputerStudiesProjects/CentralizedChatRoom/Shared/PacketEncryptionException.cs

9 lines
251 B
C#

namespace ChatRoom.Centralized.Shared;
public class PacketEncryptionException : Exception
{
public PacketEncryptionException(bool should) : base(should ?
"This packet must be encrypted." : "This packet cannot be encrypted.")
{ }
}