Files
IM_NEW/IM.Commons/EventHandlerException.cs
2026-05-09 17:06:30 +08:00

14 lines
241 B
C#

namespace IM.Commons
{
public class EventHandlerException : Exception
{
public EventHandlerException()
{
}
public EventHandlerException(string? message) : base(message)
{
}
}
}