00001 /* 00002 00003 Copyright (C) University of Oxford, 2005-2009 00004 00005 University of Oxford means the Chancellor, Masters and Scholars of the 00006 University of Oxford, having an administrative office at Wellington 00007 Square, Oxford OX1 2JD, UK. 00008 00009 This file is part of Chaste. 00010 00011 Chaste is free software: you can redistribute it and/or modify it 00012 under the terms of the GNU Lesser General Public License as published 00013 by the Free Software Foundation, either version 2.1 of the License, or 00014 (at your option) any later version. 00015 00016 Chaste is distributed in the hope that it will be useful, but WITHOUT 00017 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00018 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public 00019 License for more details. The offer of Chaste under the terms of the 00020 License is subject to the License being interpreted in accordance with 00021 English Law and subject to any action against the University of Oxford 00022 being under the jurisdiction of the English Courts. 00023 00024 You should have received a copy of the GNU Lesser General Public License 00025 along with Chaste. If not, see <http://www.gnu.org/licenses/>. 00026 00027 */ 00028 00029 00030 #ifndef _EXCEPTION_HPP_ 00031 #define _EXCEPTION_HPP_ 00032 00033 #include <string> 00034 00035 #include <cfloat> 00036 #include <climits> //For UINT_MAX etc., necessary in gcc-4.3 00037 #include <cstdlib> //For system() etc., necessary in gcc-4.3 00038 00039 const unsigned UNSIGNED_UNSET=UINT_MAX; 00040 const int INT_UNSET=INT_MAX; 00041 const double DOUBLE_UNSET=DBL_MAX; 00042 00049 class Exception 00050 { 00051 private: 00052 std::string mMessage; 00054 public: 00062 Exception(std::string message, std::string filename, const unsigned rLineNumber); 00063 00068 std::string GetMessage() const; 00069 }; 00070 00071 #define EXCEPTION(message) throw Exception(message, __FILE__, __LINE__) 00072 00073 #define NEVER_REACHED EXCEPTION("Should have been impossible to reach this line of code") 00074 00075 // This is to cope with NDEBUG causing variables to not be used, since they are only 00076 // used in assert()s 00077 #ifdef NDEBUG 00078 #define UNUSED_OPT(var) var=var 00079 #else 00080 #define UNUSED_OPT(var) 00081 #endif 00082 00083 // This macro is handy for calling functions like system which return non-zero on error 00084 #define EXPECT0(cmd, arg) { \ 00085 std::string _arg = (arg); \ 00086 int ret = cmd(_arg.c_str()); \ 00087 if (ret != 0) { \ 00088 EXCEPTION("Failed to execute command: " #cmd "(" + _arg + ")"); \ 00089 } } 00090 // Or if you don't care about errors for some reason... 00091 #define IGNORE_RET(cmd, arg) { \ 00092 std::string _arg = (arg); \ 00093 int ret = cmd(_arg.c_str()); \ 00094 ret = ret; \ 00095 } 00096 00097 #endif // _EXCEPTION_HPP_