Files
stormchat/Interact/Exception.cs
T
2018-12-20 16:52:29 +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) { }
}
}