passwordfile/io/cryptoexception.cpp

23 lines
433 B
C++
Raw Normal View History

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