diff options
Diffstat (limited to 'include/anope.h')
-rw-r--r-- | include/anope.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/anope.h b/include/anope.h index 942952857..8d58acdce 100644 --- a/include/anope.h +++ b/include/anope.h @@ -717,9 +717,6 @@ protected: */ Anope::string source; public: - /** Default constructor, just uses the error message 'Core threw an exception'. - */ - CoreException() : err("Core threw an exception"), source("The core") { } /** This constructor can be used to specify an error message before throwing. */ CoreException(const Anope::string &message) : err(message), source("The core") { } @@ -750,10 +747,6 @@ class CoreExport ModuleException : public CoreException { public: - /** Default constructor, just uses the error message 'Module threw an exception'. - */ - ModuleException() : CoreException("Module threw an exception", "A Module") { } - /** This constructor can be used to specify an error message before throwing. */ ModuleException(const Anope::string &message) : CoreException(message, "A Module") { } |