diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-20 16:49:14 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2010-02-20 16:49:14 +0000 |
commit | 1b063c74b4f6437059a61f42f39ea8bb725e8cd8 (patch) | |
tree | 492cce31ea17b5504c2bf20b56d2e1553de9a377 /include/base.h | |
parent | 4d46f5f9ef94c295649afad38c6d496ae2bbe5e1 (diff) |
Replace m_halfvoice with m_customprefix
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12503 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/base.h')
-rw-r--r-- | include/base.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/base.h b/include/base.h index e75b4029f..8d8f7b96c 100644 --- a/include/base.h +++ b/include/base.h @@ -150,14 +150,13 @@ class reference */ class CoreExport CoreException : public std::exception { - protected: + public: /** Holds the error message to be displayed */ const std::string err; /** Source of the exception */ const std::string source; - public: /** Default constructor, just uses the error mesage 'Core threw an exception'. */ CoreException() : err("Core threw an exception"), source("The core") {} |