Passwordfile library  3.2.0
C++ library to read/write passwords from/to encrypted files
cryptoexception.cpp
Go to the documentation of this file.
1 #include "./cryptoexception.h"
2 
3 namespace Io {
12 CryptoException::CryptoException(const std::string &openSslErrorQueue) noexcept
13  : runtime_error(openSslErrorQueue)
14 {
15 }
16 
21 {
22 }
23 } // namespace Io
CryptoException(const std::string &openSslErrorQueue) noexcept
Constructs a crypto exception.
Contains all IO related classes.
~CryptoException() noexcept
Destroys the exception.