Virgil Security Crypto library  1.8.2
VirgilCryptoException.h
1 
37 #ifndef VIRGIL_CRYPTO_EXCEPTION_H
38 #define VIRGIL_CRYPTO_EXCEPTION_H
39 
40 #include <stdexcept>
41 #include <string>
42 
43 namespace virgil { namespace crypto {
44 
48 class VirgilCryptoException : public std::logic_error {
49 public:
53  explicit VirgilCryptoException(const std::string& what);
54 };
55 
56 }}
57 
58 #endif /* VIRGIL_CRYPTO_EXCEPTION_H */
59 
Definition: VirgilAsn1Compatible.h:46
VirgilCryptoException(const std::string &what)
Construct exception with detailed information about it.
Encapsulates logic errors of module 'crypto'.
Definition: VirgilCryptoException.h:48