Files
stormchat/stormchat-client-csharp/Interact/Exception.cs
T
2018-12-23 15:09:24 +08:00

13 lines
242 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Interact
{
public class ConnectionBrokenException : Exception
{
public ConnectionBrokenException(string message) : base(message) { }
}
}