base/Exception.hpp
Go to the documentation of this file.
00001 /*
00002 
00003   This file is part of OpenFLUID software
00004   Copyright(c) 2007, INRA - Montpellier SupAgro
00005 
00006 
00007  == GNU General Public License Usage ==
00008 
00009   OpenFLUID is free software: you can redistribute it and/or modify
00010   it under the terms of the GNU General Public License as published by
00011   the Free Software Foundation, either version 3 of the License, or
00012   (at your option) any later version.
00013 
00014   OpenFLUID is distributed in the hope that it will be useful,
00015   but WITHOUT ANY WARRANTY; without even the implied warranty of
00016   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00017   GNU General Public License for more details.
00018 
00019   You should have received a copy of the GNU General Public License
00020   along with OpenFLUID. If not, see <http://www.gnu.org/licenses/>.
00021 
00022 
00023  == Other Usage ==
00024 
00025   Other Usage means a use of OpenFLUID that is inconsistent with the GPL
00026   license, and requires a written agreement between You and INRA.
00027   Licensees for Other Usage of OpenFLUID may use this file in accordance
00028   with the terms contained in the written agreement between You and INRA.
00029   
00030 */
00031 
00032 
00033 
00034 /**
00035   @file
00036 
00037   @author Jean-Christophe FABRE <fabrejc@supagro.inra.fr>
00038 */
00039 
00040 
00041 #ifndef __EXCEPTION_HPP__
00042 #define __EXCEPTION_HPP__
00043 
00044 #include <exception>
00045 #include <string>
00046 #include <sstream>
00047 
00048 
00049 namespace openfluid { namespace base {
00050 
00051 
00052 class Exception : public std::exception
00053 {
00054   protected:
00055 
00056       std::string m_Message;
00057       std::string m_Sender;
00058       std::string m_Source;
00059       std::string m_FullMessage;
00060 
00061 
00062       virtual void buildFullMessage() = 0;
00063 
00064 
00065       Exception(const std::string& Msg) :
00066         m_Message(Msg), m_Sender(""), m_Source(""), m_FullMessage("")
00067       { }
00068 
00069       Exception(const std::string& Sender, const std::string& Msg) :
00070         m_Message(Msg), m_Sender(Sender), m_Source(""), m_FullMessage("")
00071       { }
00072 
00073       Exception(const std::string& Sender, const std::string& Source, const std::string& Msg) :
00074         m_Message(Msg), m_Sender(Sender), m_Source(Source), m_FullMessage("")
00075       { }
00076 
00077   public:
00078 
00079 
00080     virtual ~Exception() throw()
00081     {
00082 
00083     }
00084 
00085     const char * what() const throw()
00086     {
00087       return m_FullMessage.c_str();
00088     }
00089 
00090     const std::string getMessage() const { return m_Message; }
00091 
00092 
00093 };
00094 
00095 
00096 } } // namespace
00097 
00098 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines