Botan
2.19.1
Crypto and TLS for C++11
|
#include <tls_exceptn.h>
Public Member Functions | |
int | error_code () const noexceptoverride |
ErrorType | error_type () const noexceptoverride |
Alert::Type | type () const |
Unexpected_Message (const std::string &err) | |
const char * | what () const noexceptoverride |
Definition at line 41 of file tls_exceptn.h.
|
inlineexplicit |
Definition at line 44 of file tls_exceptn.h.
|
inlineoverridevirtualnoexceptinherited |
Return an error code associated with this exception, or otherwise 0.
The domain of this error varies depending on the source, for example on POSIX systems it might be errno, while on a Windows system it might be the result of GetLastError or WSAGetLastError. For error_type() is OpenSSLError, it will (if nonzero) be an OpenSSL error code from ERR_get_error.
Reimplemented from Botan::Exception.
Definition at line 30 of file tls_exceptn.h.
|
inlineoverridevirtualnoexceptinherited |
Return the "type" of error which occurred.
Reimplemented from Botan::Exception.
Definition at line 32 of file tls_exceptn.h.
References Botan::TLSError.
|
inlineinherited |
Definition at line 24 of file tls_exceptn.h.
Referenced by Botan::TLS::Channel::received_data(), and Botan::TLS::Stream< StreamLayer, ChannelT >::try_with_error_code().
|
inlineoverridenoexceptinherited |
Return a descriptive string which is hopefully comprehensible to a developer. It will likely not be useful for an end user.
The string has no particular format, and the content of exception messages may change from release to release. Thus the main use of this function is for logging or debugging.
Definition at line 96 of file exceptn.h.
References m_msg.
Referenced by Botan::TLS::Client_Key_Exchange::Client_Key_Exchange(), Botan::RSA_PrivateKey::create_decryption_op(), Botan::RSA_PublicKey::create_encryption_op(), and Botan_FFI::ffi_guard_thunk().