5 lines
115 B
C#
Raw Normal View History

2024-11-13 17:50:52 +08:00
namespace JiShe.CollectBus.Network.Exceptions
2024-09-30 17:10:43 +08:00
{
public class CloseException(string msg) : Exception(msg);
}