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