2013-01-27 01:19:49 +00:00
|
|
|
// This file is part of libZelda.
|
|
|
|
//
|
|
|
|
// libZelda 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 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// libZelda 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 libZelda. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
|
2013-01-29 21:46:05 +00:00
|
|
|
#ifndef __EXCEPTION_HPP__
|
|
|
|
#define __EXCEPTION_HPP__
|
|
|
|
|
|
|
|
#include <string>
|
2013-01-27 01:19:49 +00:00
|
|
|
|
2013-07-21 03:57:20 +00:00
|
|
|
namespace zelda
|
|
|
|
{
|
2013-07-21 07:49:07 +00:00
|
|
|
namespace error
|
|
|
|
{
|
2013-07-21 03:57:20 +00:00
|
|
|
|
2013-01-27 01:19:49 +00:00
|
|
|
/*! \class Exception
|
|
|
|
* \brief The baseclass for all Exceptions.
|
|
|
|
*
|
|
|
|
* <b>Do Not</b> use Exception directly, instead create an appropriate
|
|
|
|
* Exception class and inherit from this baseclass.
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
class Exception
|
|
|
|
{
|
2013-01-27 01:19:49 +00:00
|
|
|
public:
|
|
|
|
/*! \brief The constructor for an Exception
|
|
|
|
* \param message The error message to throw
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
inline Exception(const std::string& message) :
|
|
|
|
m_message(message)
|
|
|
|
{
|
2013-07-21 03:57:20 +00:00
|
|
|
}
|
2013-01-27 01:19:49 +00:00
|
|
|
|
|
|
|
/*! \brief Returns the Error message of the exception
|
|
|
|
* \return std::string The error message
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
inline std::string message() const
|
|
|
|
{
|
|
|
|
return m_message;
|
2013-07-21 03:57:20 +00:00
|
|
|
}
|
2013-01-29 21:46:05 +00:00
|
|
|
protected:
|
2013-07-21 03:57:20 +00:00
|
|
|
std::string m_message; //!< The error message string
|
2013-01-29 21:46:05 +00:00
|
|
|
};
|
|
|
|
|
2013-07-21 07:49:07 +00:00
|
|
|
} // error
|
2013-07-21 03:57:20 +00:00
|
|
|
} // zelda
|
2013-01-29 21:46:05 +00:00
|
|
|
#endif
|