From 206775937e92c2d74847c216bfd53daca782f848 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Wed, 8 Sep 2021 12:37:29 +0200 Subject: [PATCH] Added missing exception definition --- source/eventy/exceptions.d | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 source/eventy/exceptions.d 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