passwordfile/io/parsingexception.cpp

24 lines
406 B
C++
Raw Normal View History

2015-09-06 20:33:27 +02:00
#include "./parsingexception.h"
2015-04-22 19:06:29 +02:00
namespace Io {
/*!
* \class ParsingException
* \brief The exception that is thrown when a parsing error occurs.
*/
/*!
* \brief Constructs a parsing exception.
*/
2017-05-01 03:25:30 +02:00
ParsingException::ParsingException(const std::string &message) USE_NOTHROW : runtime_error(message)
{
}
2015-04-22 19:06:29 +02:00
/*!
* \brief Destroys the exception.
*/
ParsingException::~ParsingException() USE_NOTHROW
2017-05-01 03:25:30 +02:00
{
}
2015-04-22 19:06:29 +02:00
}