#ifndef CRYPTOFAILUREEXCEPTION_H #define CRYPTOFAILUREEXCEPTION_H #include "../global.h" #include #include namespace Io { class PASSWORD_FILE_EXPORT CryptoException : public std::runtime_error { public: CryptoException(const std::string &openSslErrorQueue) USE_NOTHROW; virtual ~CryptoException() USE_NOTHROW; }; } #endif // CRYPTOFAILUREEXCEPTION_H