eventy/source/eventy/exceptions.d

9 lines
138 B
D
Raw Normal View History

2021-09-08 11:37:29 +01:00
module eventy.exceptions;
public final class EventyException : Exception
{
this(string message)
{
super(message);
}
}