Added missing exception definition

This commit is contained in:
Tristan B. Velloza Kildaire 2021-09-08 12:37:29 +02:00
parent ca61e7a8e1
commit 206775937e
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
module eventy.exceptions;
public final class EventyException : Exception
{
this(string message)
{
super(message);
}
}