summaryrefslogtreecommitdiff
path: root/src/modules/extra/m_filter_pcre.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-19 15:21:51 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-02-19 15:21:51 +0000
commit1328556e3690aa7a6c6003373221c4cc914c1d4d (patch)
tree9937918b7ff76424726a949d34edbc1ba38f3dc0 /src/modules/extra/m_filter_pcre.cpp
parentfe96061b003b7064b3e17c468a8851784890f7b8 (diff)
Server::AddExtendedMode and Server::AddCommand will now throw exceptions when adding a bad mode or already existing command. If the module constructor does not handle this exception, this will abort the module's constructor, forbidding loading of modules which are unable to function (smart eh)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3246 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra/m_filter_pcre.cpp')
-rw-r--r--src/modules/extra/m_filter_pcre.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_filter_pcre.cpp b/src/modules/extra/m_filter_pcre.cpp
index fe3d721d4..638c1bd24 100644
--- a/src/modules/extra/m_filter_pcre.cpp
+++ b/src/modules/extra/m_filter_pcre.cpp
@@ -28,7 +28,7 @@ using namespace std;
#include "modules.h"
#include "helperfuncs.h"
-class FilterPCREException
+class FilterPCREException : public ModuleException
{
public:
virtual char* GetReason()