Passwordfile library  4.0.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 {
14 CryptoException::CryptoException(const std::string &message) noexcept
15  : runtime_error(message)
16 {
17 }
18 
22 CryptoException::CryptoException(const char *message) noexcept
23  : runtime_error(message)
24 {
25 }
26 
31 {
32 }
33 
34 } // namespace Io
~CryptoException() override
Destroys the crypto exception.
Contains all IO related classes.
CryptoException(const std::string &message) noexcept
Constructs a crypto exception.