diff --git a/source/eventy/exceptions.d b/source/eventy/exceptions.d new file mode 100644 index 0000000..9ecfe15 --- /dev/null +++ b/source/eventy/exceptions.d @@ -0,0 +1,9 @@ +module eventy.exceptions; + +public final class EventyException : Exception +{ + this(string message) + { + super(message); + } +} \ No newline at end of file