7 lines
122 B
C#
Raw Normal View History

2024-12-19 16:07:07 +08:00
using System;
namespace JiShe.CollectBus.Exceptions
2024-09-30 17:10:43 +08:00
{
public class CloseException(string msg) : Exception(msg);
}