diff options
author | Sadie Powell <sadie@witchery.services> | 2024-05-09 18:34:32 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-05-09 18:37:16 +0100 |
commit | 33a02b12239a9dd1ee6e41ab4de07a544c7aa6ae (patch) | |
tree | fb93d5e649c276b41ccb58751c4a195aeebcb2df /include/modules.h | |
parent | 68f4556609569a33c4fcf1bf67402db292d4bdeb (diff) |
Require a reason when throwing an exception.
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/modules.h b/include/modules.h index 8723e623c..e26c0b4cf 100644 --- a/include/modules.h +++ b/include/modules.h @@ -199,6 +199,8 @@ public: class CoreExport NotImplementedException final : public CoreException { +public: + NotImplementedException() : CoreException("") { } }; /** Every module in Anope is actually a class. |