2014-04-20 09:14:15 +00:00
|
|
|
// This file is part of libAthena.
|
2013-01-27 01:19:49 +00:00
|
|
|
//
|
2014-04-20 09:14:15 +00:00
|
|
|
// libAthena is free software: you can redistribute it and/or modify
|
2013-01-27 01:19:49 +00:00
|
|
|
// 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.
|
|
|
|
//
|
2014-04-20 09:14:15 +00:00
|
|
|
// libAthena is distributed in the hope that it will be useful,
|
2013-01-27 01:19:49 +00:00
|
|
|
// 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
|
2014-04-20 09:14:15 +00:00
|
|
|
// along with libAthena. If not, see <http://www.gnu.org/licenses/>
|
2013-01-27 01:19:49 +00:00
|
|
|
|
2013-01-29 21:46:05 +00:00
|
|
|
#ifndef __FILENOTFOUNDEXCEPTION_HPP__
|
|
|
|
#define __FILENOTFOUNDEXCEPTION_HPP__
|
|
|
|
|
2014-09-29 03:33:36 +00:00
|
|
|
#include "Athena/Exception.hpp"
|
2013-01-27 01:19:49 +00:00
|
|
|
|
2014-04-20 09:14:15 +00:00
|
|
|
namespace Athena
|
2013-07-21 03:57:20 +00:00
|
|
|
{
|
2013-07-21 07:49:07 +00:00
|
|
|
namespace error
|
|
|
|
{
|
2013-01-27 01:19:49 +00:00
|
|
|
/*! \class FileNotFoundException
|
|
|
|
* \brief An excpeption thrown when a file could not be found at the given path.
|
|
|
|
*
|
2013-01-27 16:49:48 +00:00
|
|
|
* This should only be thrown when the Stream is unable to open a file.<br />
|
2013-01-27 01:19:49 +00:00
|
|
|
* <br />
|
|
|
|
* It is <b>NOT</b> appropriate to use <b>throw new</b> so avoid doing so,
|
|
|
|
* keeping things on the stack as much as possible is very important for speed.
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
class FileNotFoundException : public Exception
|
|
|
|
{
|
2013-01-27 01:19:49 +00:00
|
|
|
public:
|
|
|
|
/*! \brief The constructor for an FileNotFoundException
|
|
|
|
* \param filename The path of the offending file.
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
2014-04-20 09:14:15 +00:00
|
|
|
inline FileNotFoundException(const std::string& filename, const std::string& file, const std::string& function, const int line) :
|
|
|
|
Exception(std::string("FileNotFoundException: Could not find file \"") + filename + std::string("\", please check that it exists."), file, function, line),
|
2013-01-29 21:46:05 +00:00
|
|
|
m_filename(filename)
|
|
|
|
{}
|
2013-01-27 01:19:49 +00:00
|
|
|
|
|
|
|
/*! \brief Returns the path of the offending file.
|
|
|
|
* \return std::string The filename of the file including the path.
|
2013-01-29 21:46:05 +00:00
|
|
|
*/
|
|
|
|
inline std::string filename() const { return m_filename; }
|
|
|
|
private:
|
|
|
|
std::string m_filename;
|
|
|
|
};
|
2013-07-21 07:49:07 +00:00
|
|
|
} // error
|
2014-04-20 09:14:15 +00:00
|
|
|
} // Athena
|
2013-07-21 03:57:20 +00:00
|
|
|
|
2014-04-20 09:14:15 +00:00
|
|
|
#define THROW_FILE_NOT_FOUND_EXCEPTION(msg) \
|
|
|
|
do { throw Athena::error::FileNotFoundException(msg, __FILE__, __PRETTY_FUNCTION__, __LINE__); } while(0)
|
2014-03-22 02:27:29 +00:00
|
|
|
|
2013-01-29 21:46:05 +00:00
|
|
|
#endif
|