Botan 3.13.0
Crypto and TLS for C&
Botan::Provider_Not_Found Class Referencefinal

#include <exceptn.h>

Inheritance diagram for Botan::Provider_Not_Found:
Botan::Lookup_Error Botan::Exception

Public Member Functions

virtual int error_code () const noexcept
ErrorType error_type () const noexcept override
 Provider_Not_Found (std::string_view algo, std::string_view provider)
const char * what () const noexcept override

Detailed Description

Provider_Not_Found is thrown when a specific provider was requested but that provider is not available.

Warning
This exception type will be removed in the future. Instead just catch Lookup_Error.

Definition at line 372 of file exceptn.h.

Constructor & Destructor Documentation

◆ Provider_Not_Found()

Botan::Provider_Not_Found::Provider_Not_Found ( std::string_view algo,
std::string_view provider )

Create a Provider_Not_Found exception

Parameters
algothe algorithm which was requested
providerthe provider which was not available

Definition at line 117 of file exceptn.cpp.

117 :
118 Lookup_Error(fmt("Could not find provider '{}' for algorithm '{}'", provider, algo)) {}
Lookup_Error(std::string_view err)
Definition exceptn.h:333
std::string fmt(std::string_view format, const T &... args)
Definition fmt.h:53

References Botan::fmt(), and Botan::Lookup_Error::Lookup_Error().

Member Function Documentation

◆ error_code()

virtual int Botan::Exception::error_code ( ) const
inlinevirtualnoexceptinherited

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.

Reimplemented in Botan::CommonCrypto_Error, Botan::Compression_Error, Botan::PKCS11::PKCS11_ReturnError, Botan::SQL_Database::SQL_DB_Error, Botan::System_Error, Botan::TLS::TLS_Exception, Botan::TPM2::Error, and Botan_FFI::FFI_Error.

Definition at line 108 of file exceptn.h.

108{ return 0; }

◆ error_type()

ErrorType Botan::Lookup_Error::error_type ( ) const
inlineoverridevirtualnoexceptinherited

Return the error type of this exception

Returns
the error type of this exception

Reimplemented from Botan::Exception.

Definition at line 347 of file exceptn.h.

347{ return ErrorType::LookupError; }

References Botan::LookupError.

◆ what()

const char * Botan::Exception::what ( ) const
inlineoverridenoexceptinherited

The documentation for this class was generated from the following files: