eventy/source/eventy/exceptions.d

14 lines
196 B
D

module eventy.exceptions;
/**
* EventyException
*
* An Eventy runtime error
*/
public final class EventyException : Exception
{
this(string message)
{
super(message);
}
}