eventy/source/eventy/exceptions.d

14 lines
196 B
D
Raw Normal View History

2021-09-08 11:37:29 +01:00
module eventy.exceptions;
2022-11-26 16:39:00 +00:00
/**
* EventyException
*
* An Eventy runtime error
*/
2021-09-08 11:37:29 +01:00
public final class EventyException : Exception
{
this(string message)
{
super(message);
}
}