Passwordfile library 5.0.11
C++ library to read/write passwords from/to encrypted files
Loading...
Searching...
No Matches
cryptoexception.cpp
Go to the documentation of this file.
1#include "./cryptoexception.h"
2
3namespace Io {
14CryptoException::CryptoException(const std::string &message) noexcept
15 : runtime_error(message)
16{
17}
18
22CryptoException::CryptoException(const char *message) noexcept
23 : runtime_error(message)
24{
25}
26
33
34} // namespace Io
~CryptoException() override
Destroys the crypto exception.
CryptoException(const std::string &message) noexcept
Constructs a crypto exception.
Contains all IO related classes.