diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-01 16:59:20 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-01 16:59:20 +0000 |
commit | ef79134812eb0f3ef024fe57519dce05ec4fb401 (patch) | |
tree | ca94c4fdebfd5e25c36bd7a0074a1fb31c5f3186 /src/modules/extra | |
parent | 0c22834719799f80eaec3026621e4076f793ec37 (diff) |
Some modules throw CoreException, this is wrong wrongitty wrong! Throw ModuleException instead.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9598 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/extra')
-rw-r--r-- | src/modules/extra/m_rline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_rline.cpp b/src/modules/extra/m_rline.cpp index 146087ec0..1a030d38a 100644 --- a/src/modules/extra/m_rline.cpp +++ b/src/modules/extra/m_rline.cpp @@ -47,7 +47,7 @@ class CoreExport RLine : public XLine if (!regex) { ServerInstance->SNO->WriteToSnoMask('x',"Error in regular expression: %s at offset %d: %s\n", regexs, erroffset, error); - throw CoreException("Bad regex pattern."); + throw ModuleException("Bad regex pattern."); } } |