From ef79134812eb0f3ef024fe57519dce05ec4fb401 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 1 May 2008 16:59:20 +0000 Subject: 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 --- src/modules/m_randquote.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/modules/m_randquote.cpp') diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp index 02572e7de..0353ae939 100644 --- a/src/modules/m_randquote.cpp +++ b/src/modules/m_randquote.cpp @@ -74,15 +74,13 @@ class ModuleRandQuote : public Module if (q_file.empty()) { - CoreException e("m_randquote: Quotefile not specified - Please check your config."); - throw(e); + throw ModuleException("m_randquote: Quotefile not specified - Please check your config."); } quotes = new FileReader(ServerInstance, q_file); if(!quotes->Exists()) { - CoreException e("m_randquote: QuoteFile not Found!! Please check your config - module will not function."); - throw(e); + throw ModuleException("m_randquote: QuoteFile not Found!! Please check your config - module will not function."); } else { -- cgit v1.2.3