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

#include <exceptn.h>

Inheritance diagram for Botan::Algorithm_Not_Found:
Botan::Lookup_Error Botan::Exception

Public Member Functions

 Algorithm_Not_Found (std::string_view name)
virtual int error_code () const noexcept
ErrorType error_type () const noexcept override
const char * what () const noexcept override

Detailed Description

Algorithm_Not_Found Exception

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

Definition at line 356 of file exceptn.h.

Constructor & Destructor Documentation

◆ Algorithm_Not_Found()

Botan::Algorithm_Not_Found::Algorithm_Not_Found ( std::string_view name)
explicit

Create a Algorithm_Not_Found exception

Parameters
namethe algorithm which was not found

Definition at line 114 of file exceptn.cpp.

114 :
115 Lookup_Error(fmt("Could not find any algorithm named '{}'", name)) {}
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: