14 lines
241 B
C#
14 lines
241 B
C#
namespace IM.Commons
|
|
{
|
|
public class EventHandlerException : Exception
|
|
{
|
|
public EventHandlerException()
|
|
{
|
|
}
|
|
|
|
public EventHandlerException(string? message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|