mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
16 lines
302 B
C#
16 lines
302 B
C#
using System;
|
|
|
|
namespace NexusForever.Shared.Network
|
|
{
|
|
public class InvalidPacketValueException : Exception
|
|
{
|
|
public InvalidPacketValueException()
|
|
{
|
|
}
|
|
|
|
public InvalidPacketValueException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|