summaryrefslogtreecommitdiff
path: root/src/utils/throwerror.h
diff options
context:
space:
mode:
authorYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-12-16 18:15:51 +0100
committerYohann Ferreira <yohann_dot_ferreira_at_orange_dot_efer>2010-12-16 18:15:51 +0100
commitcee7b8909d3591ad851ac7b31753b83fbfdabfa5 (patch)
tree1aeb318391012754aa6a5d622a7c29f681338dbd /src/utils/throwerror.h
parent5639bd86e3337d1e93c9b10b88a62dfe797ea163 (diff)
downloadmanaserv-cee7b8909d3591ad851ac7b31753b83fbfdabfa5.tar.gz
manaserv-cee7b8909d3591ad851ac7b31753b83fbfdabfa5.tar.bz2
manaserv-cee7b8909d3591ad851ac7b31753b83fbfdabfa5.tar.xz
manaserv-cee7b8909d3591ad851ac7b31753b83fbfdabfa5.zip
Standardized the current errors thrown.
Reviewed-by: Jaxad0127.
Diffstat (limited to 'src/utils/throwerror.h')
-rw-r--r--src/utils/throwerror.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/utils/throwerror.h b/src/utils/throwerror.h
new file mode 100644
index 00000000..1766f517
--- /dev/null
+++ b/src/utils/throwerror.h
@@ -0,0 +1,53 @@
+/*
+ * The Mana Server
+ * Copyright (C) 2004-2010 The Mana World Development Team
+ *
+ * This file is part of The Mana Server.
+ *
+ * The Mana Server is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * any later version.
+ *
+ * The Mana Server is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with The Mana Server. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef UTILS_THROWERROR_H
+#define UTILS_THROWERROR_H
+
+#include "utils/logger.h"
+
+namespace utils
+{
+ /**
+ * throw an error after logging it.
+ *
+ * @param errmsg error introduction string.
+ */
+ static void throwError(const std::string &errmsg)
+ {
+ LOG_ERROR(errmsg);
+ throw errmsg;
+ }
+
+ /**
+ * throw an error after logging it.
+ *
+ * @param errmsg error introduction string.
+ * @param T is the exception instance.
+ */
+ template <class T>
+ static void throwError(std::string errmsg, const T& e)
+ {
+ errmsg += e.what();
+ throwError(errmsg);
+ }
+}
+
+#endif // UTILS_THROWERROR_H