5 lines
197 B
C#
5 lines
197 B
C#
namespace HSchool.Protocol;
|
|
|
|
/// <summary>Thrown when a frame is truncated, oversized or otherwise unreadable.</summary>
|
|
public sealed class ProtocolException(string message) : Exception(message);
|