passwordfile/io/cryptoexception.h

21 lines
397 B
C++

#ifndef CRYPTOFAILUREEXCEPTION_H
#define CRYPTOFAILUREEXCEPTION_H
#include <c++utilities/application/global.h>
#include <stdexcept>
#include <string>
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