Files
NightAlert/ThirdParty/EngineIoClientDotNet/Src/EngineIoClientDotNet.mono/Modules/UTF8Exception.cs

11 lines
197 B
C#

using System;
namespace Quobject.EngineIoClientDotNet.Modules
{
public class UTF8Exception : Exception
{
public UTF8Exception(string message) : base(message)
{}
}
}