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