Files
h-school/src/HSchool.Protocol/ProtocolException.cs
T

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);